emailr 1.5.0 → 1.6.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
@@ -40,6 +40,7 @@ interface Inbox {
40
40
  name: string;
41
41
  username: string;
42
42
  domain: string;
43
+ reply_to: string;
43
44
  from_address: string;
44
45
  inbound_address: string;
45
46
  created_at: string;
@@ -49,9 +50,11 @@ interface CreateInboxRequest {
49
50
  name: string;
50
51
  username: string;
51
52
  domain: string;
53
+ reply_to?: string;
52
54
  }
53
55
  interface UpdateInboxRequest {
54
56
  name?: string;
57
+ reply_to?: string | null;
55
58
  }
56
59
  interface ListInboxesParams {
57
60
  }
@@ -464,6 +467,8 @@ interface Broadcast {
464
467
  created_by: string | null;
465
468
  created_at: string;
466
469
  inbox_id: string | null;
470
+ inbox_ids: string[] | null;
471
+ sending_speed: string | null;
467
472
  }
468
473
  interface CreateBroadcastRequest {
469
474
  name: string;
@@ -479,6 +484,8 @@ interface CreateBroadcastRequest {
479
484
  scheduled_at?: string;
480
485
  tags?: string[];
481
486
  inbox_id?: string;
487
+ inbox_ids?: string[];
488
+ sending_speed?: 'auto' | 'slow' | 'normal' | 'instant';
482
489
  }
483
490
  interface UpdateBroadcastRequest {
484
491
  name?: string;
@@ -494,6 +501,8 @@ interface UpdateBroadcastRequest {
494
501
  scheduled_at?: string;
495
502
  tags?: string[];
496
503
  inbox_id?: string;
504
+ inbox_ids?: string[] | null;
505
+ sending_speed?: 'auto' | 'slow' | 'normal' | 'instant' | null;
497
506
  }
498
507
  interface SendBroadcastResponse {
499
508
  success: boolean;
package/dist/index.d.ts CHANGED
@@ -40,6 +40,7 @@ interface Inbox {
40
40
  name: string;
41
41
  username: string;
42
42
  domain: string;
43
+ reply_to: string;
43
44
  from_address: string;
44
45
  inbound_address: string;
45
46
  created_at: string;
@@ -49,9 +50,11 @@ interface CreateInboxRequest {
49
50
  name: string;
50
51
  username: string;
51
52
  domain: string;
53
+ reply_to?: string;
52
54
  }
53
55
  interface UpdateInboxRequest {
54
56
  name?: string;
57
+ reply_to?: string | null;
55
58
  }
56
59
  interface ListInboxesParams {
57
60
  }
@@ -464,6 +467,8 @@ interface Broadcast {
464
467
  created_by: string | null;
465
468
  created_at: string;
466
469
  inbox_id: string | null;
470
+ inbox_ids: string[] | null;
471
+ sending_speed: string | null;
467
472
  }
468
473
  interface CreateBroadcastRequest {
469
474
  name: string;
@@ -479,6 +484,8 @@ interface CreateBroadcastRequest {
479
484
  scheduled_at?: string;
480
485
  tags?: string[];
481
486
  inbox_id?: string;
487
+ inbox_ids?: string[];
488
+ sending_speed?: 'auto' | 'slow' | 'normal' | 'instant';
482
489
  }
483
490
  interface UpdateBroadcastRequest {
484
491
  name?: string;
@@ -494,6 +501,8 @@ interface UpdateBroadcastRequest {
494
501
  scheduled_at?: string;
495
502
  tags?: string[];
496
503
  inbox_id?: string;
504
+ inbox_ids?: string[] | null;
505
+ sending_speed?: 'auto' | 'slow' | 'normal' | 'instant' | null;
497
506
  }
498
507
  interface SendBroadcastResponse {
499
508
  success: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emailr",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Official Emailr API SDK for TypeScript/JavaScript",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",