emailr 1.8.0 → 1.9.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 CHANGED
@@ -486,10 +486,8 @@ interface CreateBroadcastRequest {
486
486
  from_name?: string;
487
487
  reply_to?: string;
488
488
  preview_text?: string;
489
- template_id?: string;
489
+ template_id: string;
490
490
  segment_id?: string;
491
- html_content?: string;
492
- text_content?: string;
493
491
  scheduled_at?: string;
494
492
  tags?: string[];
495
493
  inbox_id?: string;
@@ -505,8 +503,6 @@ interface UpdateBroadcastRequest {
505
503
  preview_text?: string;
506
504
  template_id?: string;
507
505
  segment_id?: string;
508
- html_content?: string;
509
- text_content?: string;
510
506
  scheduled_at?: string;
511
507
  tags?: string[];
512
508
  inbox_id?: string;
package/dist/index.d.ts CHANGED
@@ -486,10 +486,8 @@ interface CreateBroadcastRequest {
486
486
  from_name?: string;
487
487
  reply_to?: string;
488
488
  preview_text?: string;
489
- template_id?: string;
489
+ template_id: string;
490
490
  segment_id?: string;
491
- html_content?: string;
492
- text_content?: string;
493
491
  scheduled_at?: string;
494
492
  tags?: string[];
495
493
  inbox_id?: string;
@@ -505,8 +503,6 @@ interface UpdateBroadcastRequest {
505
503
  preview_text?: string;
506
504
  template_id?: string;
507
505
  segment_id?: string;
508
- html_content?: string;
509
- text_content?: string;
510
506
  scheduled_at?: string;
511
507
  tags?: string[];
512
508
  inbox_id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emailr",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "Official Emailr API SDK for TypeScript/JavaScript",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",