@masters-union/outbound-sdk 0.2.0 → 0.2.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/index.d.mts +11 -1
- package/dist/index.d.ts +11 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -66,6 +66,11 @@ interface BulkEmailRecipient {
|
|
|
66
66
|
interface BulkEmailResponse {
|
|
67
67
|
message: string;
|
|
68
68
|
jobId: string;
|
|
69
|
+
/**
|
|
70
|
+
* Count of sendable recipients (after suppression + dedup).
|
|
71
|
+
* Suppressed addresses are recorded as `dropped` recipient rows on the job
|
|
72
|
+
* and can be inspected via the job-status endpoint.
|
|
73
|
+
*/
|
|
69
74
|
recipientCount: number;
|
|
70
75
|
suppressedCount: number;
|
|
71
76
|
/**
|
|
@@ -102,7 +107,7 @@ interface EmailRecipientStatus {
|
|
|
102
107
|
error_message?: string;
|
|
103
108
|
created_at: string;
|
|
104
109
|
}
|
|
105
|
-
type EmailStatus = 'queued' | 'processing' | 'sent' | 'delivered' | 'bounced' | 'complained' | 'opened' | 'clicked' | 'failed' | 'cancelled';
|
|
110
|
+
type EmailStatus = 'queued' | 'processing' | 'sent' | 'delivered' | 'bounced' | 'complained' | 'opened' | 'clicked' | 'failed' | 'cancelled' | 'dropped';
|
|
106
111
|
interface CancelEmailParams {
|
|
107
112
|
/** Cancel all jobs belonging to this campaign. */
|
|
108
113
|
campaignId?: string;
|
|
@@ -209,6 +214,11 @@ interface TemplateBulkRecipient {
|
|
|
209
214
|
interface TemplateBulkSendResponse {
|
|
210
215
|
message: string;
|
|
211
216
|
jobId: string;
|
|
217
|
+
/**
|
|
218
|
+
* Count of sendable recipients (after suppression + dedup).
|
|
219
|
+
* Suppressed addresses are recorded as `dropped` recipient rows on the job
|
|
220
|
+
* and can be inspected via the job-status endpoint.
|
|
221
|
+
*/
|
|
212
222
|
recipientCount: number;
|
|
213
223
|
suppressedCount: number;
|
|
214
224
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,11 @@ interface BulkEmailRecipient {
|
|
|
66
66
|
interface BulkEmailResponse {
|
|
67
67
|
message: string;
|
|
68
68
|
jobId: string;
|
|
69
|
+
/**
|
|
70
|
+
* Count of sendable recipients (after suppression + dedup).
|
|
71
|
+
* Suppressed addresses are recorded as `dropped` recipient rows on the job
|
|
72
|
+
* and can be inspected via the job-status endpoint.
|
|
73
|
+
*/
|
|
69
74
|
recipientCount: number;
|
|
70
75
|
suppressedCount: number;
|
|
71
76
|
/**
|
|
@@ -102,7 +107,7 @@ interface EmailRecipientStatus {
|
|
|
102
107
|
error_message?: string;
|
|
103
108
|
created_at: string;
|
|
104
109
|
}
|
|
105
|
-
type EmailStatus = 'queued' | 'processing' | 'sent' | 'delivered' | 'bounced' | 'complained' | 'opened' | 'clicked' | 'failed' | 'cancelled';
|
|
110
|
+
type EmailStatus = 'queued' | 'processing' | 'sent' | 'delivered' | 'bounced' | 'complained' | 'opened' | 'clicked' | 'failed' | 'cancelled' | 'dropped';
|
|
106
111
|
interface CancelEmailParams {
|
|
107
112
|
/** Cancel all jobs belonging to this campaign. */
|
|
108
113
|
campaignId?: string;
|
|
@@ -209,6 +214,11 @@ interface TemplateBulkRecipient {
|
|
|
209
214
|
interface TemplateBulkSendResponse {
|
|
210
215
|
message: string;
|
|
211
216
|
jobId: string;
|
|
217
|
+
/**
|
|
218
|
+
* Count of sendable recipients (after suppression + dedup).
|
|
219
|
+
* Suppressed addresses are recorded as `dropped` recipient rows on the job
|
|
220
|
+
* and can be inspected via the job-status endpoint.
|
|
221
|
+
*/
|
|
212
222
|
recipientCount: number;
|
|
213
223
|
suppressedCount: number;
|
|
214
224
|
/**
|