emailr 1.3.1 → 1.3.3
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -179,6 +179,7 @@ interface Template {
|
|
|
179
179
|
variables: string[] | null;
|
|
180
180
|
tags?: string[];
|
|
181
181
|
from_email: string | null;
|
|
182
|
+
from_name: string | null;
|
|
182
183
|
reply_to: string | null;
|
|
183
184
|
preview_text: string | null;
|
|
184
185
|
created_by: string | null;
|
|
@@ -193,6 +194,7 @@ interface CreateTemplateRequest {
|
|
|
193
194
|
variables?: string[];
|
|
194
195
|
tags?: string[];
|
|
195
196
|
from_email?: string;
|
|
197
|
+
from_name?: string;
|
|
196
198
|
reply_to?: string;
|
|
197
199
|
preview_text?: string;
|
|
198
200
|
}
|
|
@@ -204,6 +206,7 @@ interface UpdateTemplateRequest {
|
|
|
204
206
|
variables?: string[];
|
|
205
207
|
tags?: string[];
|
|
206
208
|
from_email?: string;
|
|
209
|
+
from_name?: string;
|
|
207
210
|
reply_to?: string;
|
|
208
211
|
preview_text?: string;
|
|
209
212
|
}
|
|
@@ -318,6 +321,7 @@ interface Broadcast {
|
|
|
318
321
|
name: string;
|
|
319
322
|
subject: string;
|
|
320
323
|
from_email: string;
|
|
324
|
+
from_name: string | null;
|
|
321
325
|
template_id: string | null;
|
|
322
326
|
segment_id: string | null;
|
|
323
327
|
status: string;
|
|
@@ -338,6 +342,7 @@ interface CreateBroadcastRequest {
|
|
|
338
342
|
name: string;
|
|
339
343
|
subject: string;
|
|
340
344
|
from_email: string;
|
|
345
|
+
from_name?: string;
|
|
341
346
|
template_id?: string;
|
|
342
347
|
segment_id?: string;
|
|
343
348
|
html_content?: string;
|
|
@@ -349,6 +354,7 @@ interface UpdateBroadcastRequest {
|
|
|
349
354
|
name?: string;
|
|
350
355
|
subject?: string;
|
|
351
356
|
from_email?: string;
|
|
357
|
+
from_name?: string;
|
|
352
358
|
template_id?: string;
|
|
353
359
|
segment_id?: string;
|
|
354
360
|
html_content?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ interface Template {
|
|
|
179
179
|
variables: string[] | null;
|
|
180
180
|
tags?: string[];
|
|
181
181
|
from_email: string | null;
|
|
182
|
+
from_name: string | null;
|
|
182
183
|
reply_to: string | null;
|
|
183
184
|
preview_text: string | null;
|
|
184
185
|
created_by: string | null;
|
|
@@ -193,6 +194,7 @@ interface CreateTemplateRequest {
|
|
|
193
194
|
variables?: string[];
|
|
194
195
|
tags?: string[];
|
|
195
196
|
from_email?: string;
|
|
197
|
+
from_name?: string;
|
|
196
198
|
reply_to?: string;
|
|
197
199
|
preview_text?: string;
|
|
198
200
|
}
|
|
@@ -204,6 +206,7 @@ interface UpdateTemplateRequest {
|
|
|
204
206
|
variables?: string[];
|
|
205
207
|
tags?: string[];
|
|
206
208
|
from_email?: string;
|
|
209
|
+
from_name?: string;
|
|
207
210
|
reply_to?: string;
|
|
208
211
|
preview_text?: string;
|
|
209
212
|
}
|
|
@@ -318,6 +321,7 @@ interface Broadcast {
|
|
|
318
321
|
name: string;
|
|
319
322
|
subject: string;
|
|
320
323
|
from_email: string;
|
|
324
|
+
from_name: string | null;
|
|
321
325
|
template_id: string | null;
|
|
322
326
|
segment_id: string | null;
|
|
323
327
|
status: string;
|
|
@@ -338,6 +342,7 @@ interface CreateBroadcastRequest {
|
|
|
338
342
|
name: string;
|
|
339
343
|
subject: string;
|
|
340
344
|
from_email: string;
|
|
345
|
+
from_name?: string;
|
|
341
346
|
template_id?: string;
|
|
342
347
|
segment_id?: string;
|
|
343
348
|
html_content?: string;
|
|
@@ -349,6 +354,7 @@ interface UpdateBroadcastRequest {
|
|
|
349
354
|
name?: string;
|
|
350
355
|
subject?: string;
|
|
351
356
|
from_email?: string;
|
|
357
|
+
from_name?: string;
|
|
352
358
|
template_id?: string;
|
|
353
359
|
segment_id?: string;
|
|
354
360
|
html_content?: string;
|