@hexclave/shared 1.0.24 → 1.0.25
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/ai/unified-prompts/reminders.js +1 -1
- package/dist/config/schema.d.ts +82 -82
- package/dist/config-authoring.d.ts +2 -2
- package/dist/config-authoring.d.ts.map +1 -1
- package/dist/config-authoring.js.map +1 -1
- package/dist/esm/ai/unified-prompts/reminders.js +1 -1
- package/dist/esm/config/schema.d.ts +82 -82
- package/dist/esm/config-authoring.d.ts +2 -2
- package/dist/esm/config-authoring.d.ts.map +1 -1
- package/dist/esm/config-authoring.js.map +1 -1
- package/dist/esm/interface/admin-metrics.d.ts +4 -4
- package/dist/esm/interface/conversations.d.ts +6 -6
- package/dist/esm/interface/crud/current-user.d.ts +10 -10
- package/dist/esm/interface/crud/email-outbox.d.ts +152 -152
- package/dist/esm/interface/crud/products.d.ts +4 -4
- package/dist/esm/interface/crud/projects.d.ts +86 -36
- package/dist/esm/interface/crud/projects.d.ts.map +1 -1
- package/dist/esm/interface/crud/projects.js +6 -0
- package/dist/esm/interface/crud/projects.js.map +1 -1
- package/dist/esm/interface/crud/team-member-profiles.d.ts +36 -36
- package/dist/esm/interface/crud/transactions.d.ts +9 -9
- package/dist/esm/interface/crud/users.d.ts +14 -14
- package/dist/esm/known-errors.d.ts +4 -4
- package/dist/esm/schema-fields.d.ts +4 -4
- package/dist/interface/admin-metrics.d.ts +4 -4
- package/dist/interface/conversations.d.ts +6 -6
- package/dist/interface/crud/current-user.d.ts +10 -10
- package/dist/interface/crud/email-outbox.d.ts +152 -152
- package/dist/interface/crud/products.d.ts +4 -4
- package/dist/interface/crud/projects.d.ts +86 -36
- package/dist/interface/crud/projects.d.ts.map +1 -1
- package/dist/interface/crud/projects.js +6 -0
- package/dist/interface/crud/projects.js.map +1 -1
- package/dist/interface/crud/team-member-profiles.d.ts +36 -36
- package/dist/interface/crud/transactions.d.ts +9 -9
- package/dist/interface/crud/users.d.ts +14 -14
- package/dist/known-errors.d.ts +4 -4
- package/dist/schema-fields.d.ts +4 -4
- package/package.json +1 -1
- package/src/config-authoring.ts +2 -2
- package/src/interface/crud/projects.ts +12 -0
|
@@ -6,9 +6,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
6
6
|
id: string;
|
|
7
7
|
status: "paused";
|
|
8
8
|
created_at_millis: number;
|
|
9
|
-
updated_at_millis: number;
|
|
10
|
-
tsx_source: string;
|
|
11
|
-
theme_id: string | null;
|
|
12
9
|
to: {
|
|
13
10
|
type: "user-primary-email";
|
|
14
11
|
user_id: string;
|
|
@@ -20,6 +17,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
20
17
|
type: "custom-emails";
|
|
21
18
|
emails: string[];
|
|
22
19
|
};
|
|
20
|
+
updated_at_millis: number;
|
|
21
|
+
tsx_source: string;
|
|
22
|
+
theme_id: string | null;
|
|
23
23
|
variables: Record<string, {} | null>;
|
|
24
24
|
skip_deliverability_check: boolean;
|
|
25
25
|
scheduled_at_millis: number;
|
|
@@ -44,9 +44,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
44
44
|
id: string;
|
|
45
45
|
status: "preparing";
|
|
46
46
|
created_at_millis: number;
|
|
47
|
-
updated_at_millis: number;
|
|
48
|
-
tsx_source: string;
|
|
49
|
-
theme_id: string | null;
|
|
50
47
|
to: {
|
|
51
48
|
type: "user-primary-email";
|
|
52
49
|
user_id: string;
|
|
@@ -58,6 +55,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
58
55
|
type: "custom-emails";
|
|
59
56
|
emails: string[];
|
|
60
57
|
};
|
|
58
|
+
updated_at_millis: number;
|
|
59
|
+
tsx_source: string;
|
|
60
|
+
theme_id: string | null;
|
|
61
61
|
variables: Record<string, {} | null>;
|
|
62
62
|
skip_deliverability_check: boolean;
|
|
63
63
|
scheduled_at_millis: number;
|
|
@@ -82,9 +82,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
82
82
|
id: string;
|
|
83
83
|
status: "rendering";
|
|
84
84
|
created_at_millis: number;
|
|
85
|
-
updated_at_millis: number;
|
|
86
|
-
tsx_source: string;
|
|
87
|
-
theme_id: string | null;
|
|
88
85
|
to: {
|
|
89
86
|
type: "user-primary-email";
|
|
90
87
|
user_id: string;
|
|
@@ -96,6 +93,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
96
93
|
type: "custom-emails";
|
|
97
94
|
emails: string[];
|
|
98
95
|
};
|
|
96
|
+
updated_at_millis: number;
|
|
97
|
+
tsx_source: string;
|
|
98
|
+
theme_id: string | null;
|
|
99
99
|
variables: Record<string, {} | null>;
|
|
100
100
|
skip_deliverability_check: boolean;
|
|
101
101
|
scheduled_at_millis: number;
|
|
@@ -121,9 +121,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
121
121
|
id: string;
|
|
122
122
|
status: "render-error";
|
|
123
123
|
created_at_millis: number;
|
|
124
|
-
updated_at_millis: number;
|
|
125
|
-
tsx_source: string;
|
|
126
|
-
theme_id: string | null;
|
|
127
124
|
to: {
|
|
128
125
|
type: "user-primary-email";
|
|
129
126
|
user_id: string;
|
|
@@ -135,6 +132,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
135
132
|
type: "custom-emails";
|
|
136
133
|
emails: string[];
|
|
137
134
|
};
|
|
135
|
+
updated_at_millis: number;
|
|
136
|
+
tsx_source: string;
|
|
137
|
+
theme_id: string | null;
|
|
138
138
|
variables: Record<string, {} | null>;
|
|
139
139
|
skip_deliverability_check: boolean;
|
|
140
140
|
scheduled_at_millis: number;
|
|
@@ -160,15 +160,11 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
160
160
|
render_error: string;
|
|
161
161
|
} | {
|
|
162
162
|
id: string;
|
|
163
|
-
status: "scheduled";
|
|
164
|
-
created_at_millis: number;
|
|
165
163
|
html: string | null;
|
|
166
164
|
text: string | null;
|
|
165
|
+
status: "scheduled";
|
|
166
|
+
created_at_millis: number;
|
|
167
167
|
subject: string;
|
|
168
|
-
notification_category_id: string | null;
|
|
169
|
-
updated_at_millis: number;
|
|
170
|
-
tsx_source: string;
|
|
171
|
-
theme_id: string | null;
|
|
172
168
|
to: {
|
|
173
169
|
type: "user-primary-email";
|
|
174
170
|
user_id: string;
|
|
@@ -180,6 +176,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
180
176
|
type: "custom-emails";
|
|
181
177
|
emails: string[];
|
|
182
178
|
};
|
|
179
|
+
updated_at_millis: number;
|
|
180
|
+
tsx_source: string;
|
|
181
|
+
theme_id: string | null;
|
|
183
182
|
variables: Record<string, {} | null>;
|
|
184
183
|
skip_deliverability_check: boolean;
|
|
185
184
|
scheduled_at_millis: number;
|
|
@@ -204,17 +203,14 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
204
203
|
rendered_at_millis: number;
|
|
205
204
|
is_transactional: boolean;
|
|
206
205
|
is_high_priority: boolean;
|
|
206
|
+
notification_category_id: string | null;
|
|
207
207
|
} | {
|
|
208
208
|
id: string;
|
|
209
|
-
status: "queued";
|
|
210
|
-
created_at_millis: number;
|
|
211
209
|
html: string | null;
|
|
212
210
|
text: string | null;
|
|
211
|
+
status: "queued";
|
|
212
|
+
created_at_millis: number;
|
|
213
213
|
subject: string;
|
|
214
|
-
notification_category_id: string | null;
|
|
215
|
-
updated_at_millis: number;
|
|
216
|
-
tsx_source: string;
|
|
217
|
-
theme_id: string | null;
|
|
218
214
|
to: {
|
|
219
215
|
type: "user-primary-email";
|
|
220
216
|
user_id: string;
|
|
@@ -226,6 +222,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
226
222
|
type: "custom-emails";
|
|
227
223
|
emails: string[];
|
|
228
224
|
};
|
|
225
|
+
updated_at_millis: number;
|
|
226
|
+
tsx_source: string;
|
|
227
|
+
theme_id: string | null;
|
|
229
228
|
variables: Record<string, {} | null>;
|
|
230
229
|
skip_deliverability_check: boolean;
|
|
231
230
|
scheduled_at_millis: number;
|
|
@@ -250,17 +249,14 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
250
249
|
rendered_at_millis: number;
|
|
251
250
|
is_transactional: boolean;
|
|
252
251
|
is_high_priority: boolean;
|
|
252
|
+
notification_category_id: string | null;
|
|
253
253
|
} | {
|
|
254
254
|
id: string;
|
|
255
|
-
status: "sending";
|
|
256
|
-
created_at_millis: number;
|
|
257
255
|
html: string | null;
|
|
258
256
|
text: string | null;
|
|
257
|
+
status: "sending";
|
|
258
|
+
created_at_millis: number;
|
|
259
259
|
subject: string;
|
|
260
|
-
notification_category_id: string | null;
|
|
261
|
-
updated_at_millis: number;
|
|
262
|
-
tsx_source: string;
|
|
263
|
-
theme_id: string | null;
|
|
264
260
|
to: {
|
|
265
261
|
type: "user-primary-email";
|
|
266
262
|
user_id: string;
|
|
@@ -272,6 +268,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
272
268
|
type: "custom-emails";
|
|
273
269
|
emails: string[];
|
|
274
270
|
};
|
|
271
|
+
updated_at_millis: number;
|
|
272
|
+
tsx_source: string;
|
|
273
|
+
theme_id: string | null;
|
|
275
274
|
variables: Record<string, {} | null>;
|
|
276
275
|
skip_deliverability_check: boolean;
|
|
277
276
|
scheduled_at_millis: number;
|
|
@@ -296,18 +295,15 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
296
295
|
rendered_at_millis: number;
|
|
297
296
|
is_transactional: boolean;
|
|
298
297
|
is_high_priority: boolean;
|
|
298
|
+
notification_category_id: string | null;
|
|
299
299
|
started_sending_at_millis: number;
|
|
300
300
|
} | {
|
|
301
301
|
id: string;
|
|
302
|
-
status: "server-error";
|
|
303
|
-
created_at_millis: number;
|
|
304
302
|
html: string | null;
|
|
305
303
|
text: string | null;
|
|
304
|
+
status: "server-error";
|
|
305
|
+
created_at_millis: number;
|
|
306
306
|
subject: string;
|
|
307
|
-
notification_category_id: string | null;
|
|
308
|
-
updated_at_millis: number;
|
|
309
|
-
tsx_source: string;
|
|
310
|
-
theme_id: string | null;
|
|
311
307
|
to: {
|
|
312
308
|
type: "user-primary-email";
|
|
313
309
|
user_id: string;
|
|
@@ -319,6 +315,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
319
315
|
type: "custom-emails";
|
|
320
316
|
emails: string[];
|
|
321
317
|
};
|
|
318
|
+
updated_at_millis: number;
|
|
319
|
+
tsx_source: string;
|
|
320
|
+
theme_id: string | null;
|
|
322
321
|
variables: Record<string, {} | null>;
|
|
323
322
|
skip_deliverability_check: boolean;
|
|
324
323
|
scheduled_at_millis: number;
|
|
@@ -343,6 +342,7 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
343
342
|
rendered_at_millis: number;
|
|
344
343
|
is_transactional: boolean;
|
|
345
344
|
is_high_priority: boolean;
|
|
345
|
+
notification_category_id: string | null;
|
|
346
346
|
started_sending_at_millis: number;
|
|
347
347
|
error_at_millis: number;
|
|
348
348
|
server_error: string;
|
|
@@ -350,18 +350,15 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
350
350
|
html?: string | null | undefined;
|
|
351
351
|
text?: string | null | undefined;
|
|
352
352
|
subject?: string | undefined;
|
|
353
|
-
notification_category_id?: string | null | undefined;
|
|
354
353
|
started_rendering_at_millis?: number | undefined;
|
|
355
354
|
rendered_at_millis?: number | undefined;
|
|
356
355
|
is_transactional?: boolean | undefined;
|
|
357
356
|
is_high_priority?: boolean | undefined;
|
|
357
|
+
notification_category_id?: string | null | undefined;
|
|
358
358
|
started_sending_at_millis?: number | undefined;
|
|
359
359
|
id: string;
|
|
360
360
|
status: "skipped";
|
|
361
361
|
created_at_millis: number;
|
|
362
|
-
updated_at_millis: number;
|
|
363
|
-
tsx_source: string;
|
|
364
|
-
theme_id: string | null;
|
|
365
362
|
to: {
|
|
366
363
|
type: "user-primary-email";
|
|
367
364
|
user_id: string;
|
|
@@ -373,6 +370,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
373
370
|
type: "custom-emails";
|
|
374
371
|
emails: string[];
|
|
375
372
|
};
|
|
373
|
+
updated_at_millis: number;
|
|
374
|
+
tsx_source: string;
|
|
375
|
+
theme_id: string | null;
|
|
376
376
|
variables: Record<string, {} | null>;
|
|
377
377
|
skip_deliverability_check: boolean;
|
|
378
378
|
scheduled_at_millis: number;
|
|
@@ -398,15 +398,11 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
398
398
|
skipped_details: Record<string, {} | null>;
|
|
399
399
|
} | {
|
|
400
400
|
id: string;
|
|
401
|
-
status: "bounced";
|
|
402
|
-
created_at_millis: number;
|
|
403
401
|
html: string | null;
|
|
404
402
|
text: string | null;
|
|
403
|
+
status: "bounced";
|
|
404
|
+
created_at_millis: number;
|
|
405
405
|
subject: string;
|
|
406
|
-
notification_category_id: string | null;
|
|
407
|
-
updated_at_millis: number;
|
|
408
|
-
tsx_source: string;
|
|
409
|
-
theme_id: string | null;
|
|
410
406
|
to: {
|
|
411
407
|
type: "user-primary-email";
|
|
412
408
|
user_id: string;
|
|
@@ -418,6 +414,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
418
414
|
type: "custom-emails";
|
|
419
415
|
emails: string[];
|
|
420
416
|
};
|
|
417
|
+
updated_at_millis: number;
|
|
418
|
+
tsx_source: string;
|
|
419
|
+
theme_id: string | null;
|
|
421
420
|
variables: Record<string, {} | null>;
|
|
422
421
|
skip_deliverability_check: boolean;
|
|
423
422
|
scheduled_at_millis: number;
|
|
@@ -442,19 +441,16 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
442
441
|
rendered_at_millis: number;
|
|
443
442
|
is_transactional: boolean;
|
|
444
443
|
is_high_priority: boolean;
|
|
444
|
+
notification_category_id: string | null;
|
|
445
445
|
started_sending_at_millis: number;
|
|
446
446
|
bounced_at_millis: number;
|
|
447
447
|
} | {
|
|
448
448
|
id: string;
|
|
449
|
-
status: "delivery-delayed";
|
|
450
|
-
created_at_millis: number;
|
|
451
449
|
html: string | null;
|
|
452
450
|
text: string | null;
|
|
451
|
+
status: "delivery-delayed";
|
|
452
|
+
created_at_millis: number;
|
|
453
453
|
subject: string;
|
|
454
|
-
notification_category_id: string | null;
|
|
455
|
-
updated_at_millis: number;
|
|
456
|
-
tsx_source: string;
|
|
457
|
-
theme_id: string | null;
|
|
458
454
|
to: {
|
|
459
455
|
type: "user-primary-email";
|
|
460
456
|
user_id: string;
|
|
@@ -466,6 +462,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
466
462
|
type: "custom-emails";
|
|
467
463
|
emails: string[];
|
|
468
464
|
};
|
|
465
|
+
updated_at_millis: number;
|
|
466
|
+
tsx_source: string;
|
|
467
|
+
theme_id: string | null;
|
|
469
468
|
variables: Record<string, {} | null>;
|
|
470
469
|
skip_deliverability_check: boolean;
|
|
471
470
|
scheduled_at_millis: number;
|
|
@@ -490,19 +489,16 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
490
489
|
rendered_at_millis: number;
|
|
491
490
|
is_transactional: boolean;
|
|
492
491
|
is_high_priority: boolean;
|
|
492
|
+
notification_category_id: string | null;
|
|
493
493
|
started_sending_at_millis: number;
|
|
494
494
|
delivery_delayed_at_millis: number;
|
|
495
495
|
} | {
|
|
496
496
|
id: string;
|
|
497
|
-
status: "sent";
|
|
498
|
-
created_at_millis: number;
|
|
499
497
|
html: string | null;
|
|
500
498
|
text: string | null;
|
|
499
|
+
status: "sent";
|
|
500
|
+
created_at_millis: number;
|
|
501
501
|
subject: string;
|
|
502
|
-
notification_category_id: string | null;
|
|
503
|
-
updated_at_millis: number;
|
|
504
|
-
tsx_source: string;
|
|
505
|
-
theme_id: string | null;
|
|
506
502
|
to: {
|
|
507
503
|
type: "user-primary-email";
|
|
508
504
|
user_id: string;
|
|
@@ -514,6 +510,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
514
510
|
type: "custom-emails";
|
|
515
511
|
emails: string[];
|
|
516
512
|
};
|
|
513
|
+
updated_at_millis: number;
|
|
514
|
+
tsx_source: string;
|
|
515
|
+
theme_id: string | null;
|
|
517
516
|
variables: Record<string, {} | null>;
|
|
518
517
|
skip_deliverability_check: boolean;
|
|
519
518
|
scheduled_at_millis: number;
|
|
@@ -538,20 +537,17 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
538
537
|
rendered_at_millis: number;
|
|
539
538
|
is_transactional: boolean;
|
|
540
539
|
is_high_priority: boolean;
|
|
540
|
+
notification_category_id: string | null;
|
|
541
541
|
started_sending_at_millis: number;
|
|
542
542
|
delivered_at_millis: number;
|
|
543
543
|
can_have_delivery_info: boolean;
|
|
544
544
|
} | {
|
|
545
545
|
id: string;
|
|
546
|
-
status: "opened";
|
|
547
|
-
created_at_millis: number;
|
|
548
546
|
html: string | null;
|
|
549
547
|
text: string | null;
|
|
548
|
+
status: "opened";
|
|
549
|
+
created_at_millis: number;
|
|
550
550
|
subject: string;
|
|
551
|
-
notification_category_id: string | null;
|
|
552
|
-
updated_at_millis: number;
|
|
553
|
-
tsx_source: string;
|
|
554
|
-
theme_id: string | null;
|
|
555
551
|
to: {
|
|
556
552
|
type: "user-primary-email";
|
|
557
553
|
user_id: string;
|
|
@@ -563,6 +559,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
563
559
|
type: "custom-emails";
|
|
564
560
|
emails: string[];
|
|
565
561
|
};
|
|
562
|
+
updated_at_millis: number;
|
|
563
|
+
tsx_source: string;
|
|
564
|
+
theme_id: string | null;
|
|
566
565
|
variables: Record<string, {} | null>;
|
|
567
566
|
skip_deliverability_check: boolean;
|
|
568
567
|
scheduled_at_millis: number;
|
|
@@ -587,21 +586,18 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
587
586
|
rendered_at_millis: number;
|
|
588
587
|
is_transactional: boolean;
|
|
589
588
|
is_high_priority: boolean;
|
|
589
|
+
notification_category_id: string | null;
|
|
590
590
|
started_sending_at_millis: number;
|
|
591
591
|
delivered_at_millis: number;
|
|
592
592
|
can_have_delivery_info: boolean;
|
|
593
593
|
opened_at_millis: number;
|
|
594
594
|
} | {
|
|
595
595
|
id: string;
|
|
596
|
-
status: "clicked";
|
|
597
|
-
created_at_millis: number;
|
|
598
596
|
html: string | null;
|
|
599
597
|
text: string | null;
|
|
598
|
+
status: "clicked";
|
|
599
|
+
created_at_millis: number;
|
|
600
600
|
subject: string;
|
|
601
|
-
notification_category_id: string | null;
|
|
602
|
-
updated_at_millis: number;
|
|
603
|
-
tsx_source: string;
|
|
604
|
-
theme_id: string | null;
|
|
605
601
|
to: {
|
|
606
602
|
type: "user-primary-email";
|
|
607
603
|
user_id: string;
|
|
@@ -613,6 +609,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
613
609
|
type: "custom-emails";
|
|
614
610
|
emails: string[];
|
|
615
611
|
};
|
|
612
|
+
updated_at_millis: number;
|
|
613
|
+
tsx_source: string;
|
|
614
|
+
theme_id: string | null;
|
|
616
615
|
variables: Record<string, {} | null>;
|
|
617
616
|
skip_deliverability_check: boolean;
|
|
618
617
|
scheduled_at_millis: number;
|
|
@@ -637,21 +636,18 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
637
636
|
rendered_at_millis: number;
|
|
638
637
|
is_transactional: boolean;
|
|
639
638
|
is_high_priority: boolean;
|
|
639
|
+
notification_category_id: string | null;
|
|
640
640
|
started_sending_at_millis: number;
|
|
641
641
|
delivered_at_millis: number;
|
|
642
642
|
can_have_delivery_info: boolean;
|
|
643
643
|
clicked_at_millis: number;
|
|
644
644
|
} | {
|
|
645
645
|
id: string;
|
|
646
|
-
status: "marked-as-spam";
|
|
647
|
-
created_at_millis: number;
|
|
648
646
|
html: string | null;
|
|
649
647
|
text: string | null;
|
|
648
|
+
status: "marked-as-spam";
|
|
649
|
+
created_at_millis: number;
|
|
650
650
|
subject: string;
|
|
651
|
-
notification_category_id: string | null;
|
|
652
|
-
updated_at_millis: number;
|
|
653
|
-
tsx_source: string;
|
|
654
|
-
theme_id: string | null;
|
|
655
651
|
to: {
|
|
656
652
|
type: "user-primary-email";
|
|
657
653
|
user_id: string;
|
|
@@ -663,6 +659,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
663
659
|
type: "custom-emails";
|
|
664
660
|
emails: string[];
|
|
665
661
|
};
|
|
662
|
+
updated_at_millis: number;
|
|
663
|
+
tsx_source: string;
|
|
664
|
+
theme_id: string | null;
|
|
666
665
|
variables: Record<string, {} | null>;
|
|
667
666
|
skip_deliverability_check: boolean;
|
|
668
667
|
scheduled_at_millis: number;
|
|
@@ -687,6 +686,7 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
687
686
|
rendered_at_millis: number;
|
|
688
687
|
is_transactional: boolean;
|
|
689
688
|
is_high_priority: boolean;
|
|
689
|
+
notification_category_id: string | null;
|
|
690
690
|
started_sending_at_millis: number;
|
|
691
691
|
delivered_at_millis: number;
|
|
692
692
|
can_have_delivery_info: boolean;
|
|
@@ -726,9 +726,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
726
726
|
id: string;
|
|
727
727
|
status: "paused";
|
|
728
728
|
created_at_millis: number;
|
|
729
|
-
updated_at_millis: number;
|
|
730
|
-
tsx_source: string;
|
|
731
|
-
theme_id: string | null;
|
|
732
729
|
to: {
|
|
733
730
|
type: "user-primary-email";
|
|
734
731
|
user_id: string;
|
|
@@ -740,6 +737,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
740
737
|
type: "custom-emails";
|
|
741
738
|
emails: string[];
|
|
742
739
|
};
|
|
740
|
+
updated_at_millis: number;
|
|
741
|
+
tsx_source: string;
|
|
742
|
+
theme_id: string | null;
|
|
743
743
|
variables: Record<string, {} | null>;
|
|
744
744
|
skip_deliverability_check: boolean;
|
|
745
745
|
scheduled_at_millis: number;
|
|
@@ -764,9 +764,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
764
764
|
id: string;
|
|
765
765
|
status: "preparing";
|
|
766
766
|
created_at_millis: number;
|
|
767
|
-
updated_at_millis: number;
|
|
768
|
-
tsx_source: string;
|
|
769
|
-
theme_id: string | null;
|
|
770
767
|
to: {
|
|
771
768
|
type: "user-primary-email";
|
|
772
769
|
user_id: string;
|
|
@@ -778,6 +775,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
778
775
|
type: "custom-emails";
|
|
779
776
|
emails: string[];
|
|
780
777
|
};
|
|
778
|
+
updated_at_millis: number;
|
|
779
|
+
tsx_source: string;
|
|
780
|
+
theme_id: string | null;
|
|
781
781
|
variables: Record<string, {} | null>;
|
|
782
782
|
skip_deliverability_check: boolean;
|
|
783
783
|
scheduled_at_millis: number;
|
|
@@ -802,9 +802,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
802
802
|
id: string;
|
|
803
803
|
status: "rendering";
|
|
804
804
|
created_at_millis: number;
|
|
805
|
-
updated_at_millis: number;
|
|
806
|
-
tsx_source: string;
|
|
807
|
-
theme_id: string | null;
|
|
808
805
|
to: {
|
|
809
806
|
type: "user-primary-email";
|
|
810
807
|
user_id: string;
|
|
@@ -816,6 +813,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
816
813
|
type: "custom-emails";
|
|
817
814
|
emails: string[];
|
|
818
815
|
};
|
|
816
|
+
updated_at_millis: number;
|
|
817
|
+
tsx_source: string;
|
|
818
|
+
theme_id: string | null;
|
|
819
819
|
variables: Record<string, {} | null>;
|
|
820
820
|
skip_deliverability_check: boolean;
|
|
821
821
|
scheduled_at_millis: number;
|
|
@@ -841,9 +841,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
841
841
|
id: string;
|
|
842
842
|
status: "render-error";
|
|
843
843
|
created_at_millis: number;
|
|
844
|
-
updated_at_millis: number;
|
|
845
|
-
tsx_source: string;
|
|
846
|
-
theme_id: string | null;
|
|
847
844
|
to: {
|
|
848
845
|
type: "user-primary-email";
|
|
849
846
|
user_id: string;
|
|
@@ -855,6 +852,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
855
852
|
type: "custom-emails";
|
|
856
853
|
emails: string[];
|
|
857
854
|
};
|
|
855
|
+
updated_at_millis: number;
|
|
856
|
+
tsx_source: string;
|
|
857
|
+
theme_id: string | null;
|
|
858
858
|
variables: Record<string, {} | null>;
|
|
859
859
|
skip_deliverability_check: boolean;
|
|
860
860
|
scheduled_at_millis: number;
|
|
@@ -880,15 +880,11 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
880
880
|
render_error: string;
|
|
881
881
|
} | {
|
|
882
882
|
id: string;
|
|
883
|
-
status: "scheduled";
|
|
884
|
-
created_at_millis: number;
|
|
885
883
|
html: string | null;
|
|
886
884
|
text: string | null;
|
|
885
|
+
status: "scheduled";
|
|
886
|
+
created_at_millis: number;
|
|
887
887
|
subject: string;
|
|
888
|
-
notification_category_id: string | null;
|
|
889
|
-
updated_at_millis: number;
|
|
890
|
-
tsx_source: string;
|
|
891
|
-
theme_id: string | null;
|
|
892
888
|
to: {
|
|
893
889
|
type: "user-primary-email";
|
|
894
890
|
user_id: string;
|
|
@@ -900,6 +896,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
900
896
|
type: "custom-emails";
|
|
901
897
|
emails: string[];
|
|
902
898
|
};
|
|
899
|
+
updated_at_millis: number;
|
|
900
|
+
tsx_source: string;
|
|
901
|
+
theme_id: string | null;
|
|
903
902
|
variables: Record<string, {} | null>;
|
|
904
903
|
skip_deliverability_check: boolean;
|
|
905
904
|
scheduled_at_millis: number;
|
|
@@ -924,17 +923,14 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
924
923
|
rendered_at_millis: number;
|
|
925
924
|
is_transactional: boolean;
|
|
926
925
|
is_high_priority: boolean;
|
|
926
|
+
notification_category_id: string | null;
|
|
927
927
|
} | {
|
|
928
928
|
id: string;
|
|
929
|
-
status: "queued";
|
|
930
|
-
created_at_millis: number;
|
|
931
929
|
html: string | null;
|
|
932
930
|
text: string | null;
|
|
931
|
+
status: "queued";
|
|
932
|
+
created_at_millis: number;
|
|
933
933
|
subject: string;
|
|
934
|
-
notification_category_id: string | null;
|
|
935
|
-
updated_at_millis: number;
|
|
936
|
-
tsx_source: string;
|
|
937
|
-
theme_id: string | null;
|
|
938
934
|
to: {
|
|
939
935
|
type: "user-primary-email";
|
|
940
936
|
user_id: string;
|
|
@@ -946,6 +942,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
946
942
|
type: "custom-emails";
|
|
947
943
|
emails: string[];
|
|
948
944
|
};
|
|
945
|
+
updated_at_millis: number;
|
|
946
|
+
tsx_source: string;
|
|
947
|
+
theme_id: string | null;
|
|
949
948
|
variables: Record<string, {} | null>;
|
|
950
949
|
skip_deliverability_check: boolean;
|
|
951
950
|
scheduled_at_millis: number;
|
|
@@ -970,17 +969,14 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
970
969
|
rendered_at_millis: number;
|
|
971
970
|
is_transactional: boolean;
|
|
972
971
|
is_high_priority: boolean;
|
|
972
|
+
notification_category_id: string | null;
|
|
973
973
|
} | {
|
|
974
974
|
id: string;
|
|
975
|
-
status: "sending";
|
|
976
|
-
created_at_millis: number;
|
|
977
975
|
html: string | null;
|
|
978
976
|
text: string | null;
|
|
977
|
+
status: "sending";
|
|
978
|
+
created_at_millis: number;
|
|
979
979
|
subject: string;
|
|
980
|
-
notification_category_id: string | null;
|
|
981
|
-
updated_at_millis: number;
|
|
982
|
-
tsx_source: string;
|
|
983
|
-
theme_id: string | null;
|
|
984
980
|
to: {
|
|
985
981
|
type: "user-primary-email";
|
|
986
982
|
user_id: string;
|
|
@@ -992,6 +988,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
992
988
|
type: "custom-emails";
|
|
993
989
|
emails: string[];
|
|
994
990
|
};
|
|
991
|
+
updated_at_millis: number;
|
|
992
|
+
tsx_source: string;
|
|
993
|
+
theme_id: string | null;
|
|
995
994
|
variables: Record<string, {} | null>;
|
|
996
995
|
skip_deliverability_check: boolean;
|
|
997
996
|
scheduled_at_millis: number;
|
|
@@ -1016,18 +1015,15 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1016
1015
|
rendered_at_millis: number;
|
|
1017
1016
|
is_transactional: boolean;
|
|
1018
1017
|
is_high_priority: boolean;
|
|
1018
|
+
notification_category_id: string | null;
|
|
1019
1019
|
started_sending_at_millis: number;
|
|
1020
1020
|
} | {
|
|
1021
1021
|
id: string;
|
|
1022
|
-
status: "server-error";
|
|
1023
|
-
created_at_millis: number;
|
|
1024
1022
|
html: string | null;
|
|
1025
1023
|
text: string | null;
|
|
1024
|
+
status: "server-error";
|
|
1025
|
+
created_at_millis: number;
|
|
1026
1026
|
subject: string;
|
|
1027
|
-
notification_category_id: string | null;
|
|
1028
|
-
updated_at_millis: number;
|
|
1029
|
-
tsx_source: string;
|
|
1030
|
-
theme_id: string | null;
|
|
1031
1027
|
to: {
|
|
1032
1028
|
type: "user-primary-email";
|
|
1033
1029
|
user_id: string;
|
|
@@ -1039,6 +1035,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1039
1035
|
type: "custom-emails";
|
|
1040
1036
|
emails: string[];
|
|
1041
1037
|
};
|
|
1038
|
+
updated_at_millis: number;
|
|
1039
|
+
tsx_source: string;
|
|
1040
|
+
theme_id: string | null;
|
|
1042
1041
|
variables: Record<string, {} | null>;
|
|
1043
1042
|
skip_deliverability_check: boolean;
|
|
1044
1043
|
scheduled_at_millis: number;
|
|
@@ -1063,6 +1062,7 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1063
1062
|
rendered_at_millis: number;
|
|
1064
1063
|
is_transactional: boolean;
|
|
1065
1064
|
is_high_priority: boolean;
|
|
1065
|
+
notification_category_id: string | null;
|
|
1066
1066
|
started_sending_at_millis: number;
|
|
1067
1067
|
error_at_millis: number;
|
|
1068
1068
|
server_error: string;
|
|
@@ -1070,18 +1070,15 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1070
1070
|
html?: string | null | undefined;
|
|
1071
1071
|
text?: string | null | undefined;
|
|
1072
1072
|
subject?: string | undefined;
|
|
1073
|
-
notification_category_id?: string | null | undefined;
|
|
1074
1073
|
started_rendering_at_millis?: number | undefined;
|
|
1075
1074
|
rendered_at_millis?: number | undefined;
|
|
1076
1075
|
is_transactional?: boolean | undefined;
|
|
1077
1076
|
is_high_priority?: boolean | undefined;
|
|
1077
|
+
notification_category_id?: string | null | undefined;
|
|
1078
1078
|
started_sending_at_millis?: number | undefined;
|
|
1079
1079
|
id: string;
|
|
1080
1080
|
status: "skipped";
|
|
1081
1081
|
created_at_millis: number;
|
|
1082
|
-
updated_at_millis: number;
|
|
1083
|
-
tsx_source: string;
|
|
1084
|
-
theme_id: string | null;
|
|
1085
1082
|
to: {
|
|
1086
1083
|
type: "user-primary-email";
|
|
1087
1084
|
user_id: string;
|
|
@@ -1093,6 +1090,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1093
1090
|
type: "custom-emails";
|
|
1094
1091
|
emails: string[];
|
|
1095
1092
|
};
|
|
1093
|
+
updated_at_millis: number;
|
|
1094
|
+
tsx_source: string;
|
|
1095
|
+
theme_id: string | null;
|
|
1096
1096
|
variables: Record<string, {} | null>;
|
|
1097
1097
|
skip_deliverability_check: boolean;
|
|
1098
1098
|
scheduled_at_millis: number;
|
|
@@ -1118,15 +1118,11 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1118
1118
|
skipped_details: Record<string, {} | null>;
|
|
1119
1119
|
} | {
|
|
1120
1120
|
id: string;
|
|
1121
|
-
status: "bounced";
|
|
1122
|
-
created_at_millis: number;
|
|
1123
1121
|
html: string | null;
|
|
1124
1122
|
text: string | null;
|
|
1123
|
+
status: "bounced";
|
|
1124
|
+
created_at_millis: number;
|
|
1125
1125
|
subject: string;
|
|
1126
|
-
notification_category_id: string | null;
|
|
1127
|
-
updated_at_millis: number;
|
|
1128
|
-
tsx_source: string;
|
|
1129
|
-
theme_id: string | null;
|
|
1130
1126
|
to: {
|
|
1131
1127
|
type: "user-primary-email";
|
|
1132
1128
|
user_id: string;
|
|
@@ -1138,6 +1134,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1138
1134
|
type: "custom-emails";
|
|
1139
1135
|
emails: string[];
|
|
1140
1136
|
};
|
|
1137
|
+
updated_at_millis: number;
|
|
1138
|
+
tsx_source: string;
|
|
1139
|
+
theme_id: string | null;
|
|
1141
1140
|
variables: Record<string, {} | null>;
|
|
1142
1141
|
skip_deliverability_check: boolean;
|
|
1143
1142
|
scheduled_at_millis: number;
|
|
@@ -1162,19 +1161,16 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1162
1161
|
rendered_at_millis: number;
|
|
1163
1162
|
is_transactional: boolean;
|
|
1164
1163
|
is_high_priority: boolean;
|
|
1164
|
+
notification_category_id: string | null;
|
|
1165
1165
|
started_sending_at_millis: number;
|
|
1166
1166
|
bounced_at_millis: number;
|
|
1167
1167
|
} | {
|
|
1168
1168
|
id: string;
|
|
1169
|
-
status: "delivery-delayed";
|
|
1170
|
-
created_at_millis: number;
|
|
1171
1169
|
html: string | null;
|
|
1172
1170
|
text: string | null;
|
|
1171
|
+
status: "delivery-delayed";
|
|
1172
|
+
created_at_millis: number;
|
|
1173
1173
|
subject: string;
|
|
1174
|
-
notification_category_id: string | null;
|
|
1175
|
-
updated_at_millis: number;
|
|
1176
|
-
tsx_source: string;
|
|
1177
|
-
theme_id: string | null;
|
|
1178
1174
|
to: {
|
|
1179
1175
|
type: "user-primary-email";
|
|
1180
1176
|
user_id: string;
|
|
@@ -1186,6 +1182,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1186
1182
|
type: "custom-emails";
|
|
1187
1183
|
emails: string[];
|
|
1188
1184
|
};
|
|
1185
|
+
updated_at_millis: number;
|
|
1186
|
+
tsx_source: string;
|
|
1187
|
+
theme_id: string | null;
|
|
1189
1188
|
variables: Record<string, {} | null>;
|
|
1190
1189
|
skip_deliverability_check: boolean;
|
|
1191
1190
|
scheduled_at_millis: number;
|
|
@@ -1210,19 +1209,16 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1210
1209
|
rendered_at_millis: number;
|
|
1211
1210
|
is_transactional: boolean;
|
|
1212
1211
|
is_high_priority: boolean;
|
|
1212
|
+
notification_category_id: string | null;
|
|
1213
1213
|
started_sending_at_millis: number;
|
|
1214
1214
|
delivery_delayed_at_millis: number;
|
|
1215
1215
|
} | {
|
|
1216
1216
|
id: string;
|
|
1217
|
-
status: "sent";
|
|
1218
|
-
created_at_millis: number;
|
|
1219
1217
|
html: string | null;
|
|
1220
1218
|
text: string | null;
|
|
1219
|
+
status: "sent";
|
|
1220
|
+
created_at_millis: number;
|
|
1221
1221
|
subject: string;
|
|
1222
|
-
notification_category_id: string | null;
|
|
1223
|
-
updated_at_millis: number;
|
|
1224
|
-
tsx_source: string;
|
|
1225
|
-
theme_id: string | null;
|
|
1226
1222
|
to: {
|
|
1227
1223
|
type: "user-primary-email";
|
|
1228
1224
|
user_id: string;
|
|
@@ -1234,6 +1230,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1234
1230
|
type: "custom-emails";
|
|
1235
1231
|
emails: string[];
|
|
1236
1232
|
};
|
|
1233
|
+
updated_at_millis: number;
|
|
1234
|
+
tsx_source: string;
|
|
1235
|
+
theme_id: string | null;
|
|
1237
1236
|
variables: Record<string, {} | null>;
|
|
1238
1237
|
skip_deliverability_check: boolean;
|
|
1239
1238
|
scheduled_at_millis: number;
|
|
@@ -1258,20 +1257,17 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1258
1257
|
rendered_at_millis: number;
|
|
1259
1258
|
is_transactional: boolean;
|
|
1260
1259
|
is_high_priority: boolean;
|
|
1260
|
+
notification_category_id: string | null;
|
|
1261
1261
|
started_sending_at_millis: number;
|
|
1262
1262
|
delivered_at_millis: number;
|
|
1263
1263
|
can_have_delivery_info: boolean;
|
|
1264
1264
|
} | {
|
|
1265
1265
|
id: string;
|
|
1266
|
-
status: "opened";
|
|
1267
|
-
created_at_millis: number;
|
|
1268
1266
|
html: string | null;
|
|
1269
1267
|
text: string | null;
|
|
1268
|
+
status: "opened";
|
|
1269
|
+
created_at_millis: number;
|
|
1270
1270
|
subject: string;
|
|
1271
|
-
notification_category_id: string | null;
|
|
1272
|
-
updated_at_millis: number;
|
|
1273
|
-
tsx_source: string;
|
|
1274
|
-
theme_id: string | null;
|
|
1275
1271
|
to: {
|
|
1276
1272
|
type: "user-primary-email";
|
|
1277
1273
|
user_id: string;
|
|
@@ -1283,6 +1279,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1283
1279
|
type: "custom-emails";
|
|
1284
1280
|
emails: string[];
|
|
1285
1281
|
};
|
|
1282
|
+
updated_at_millis: number;
|
|
1283
|
+
tsx_source: string;
|
|
1284
|
+
theme_id: string | null;
|
|
1286
1285
|
variables: Record<string, {} | null>;
|
|
1287
1286
|
skip_deliverability_check: boolean;
|
|
1288
1287
|
scheduled_at_millis: number;
|
|
@@ -1307,21 +1306,18 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1307
1306
|
rendered_at_millis: number;
|
|
1308
1307
|
is_transactional: boolean;
|
|
1309
1308
|
is_high_priority: boolean;
|
|
1309
|
+
notification_category_id: string | null;
|
|
1310
1310
|
started_sending_at_millis: number;
|
|
1311
1311
|
delivered_at_millis: number;
|
|
1312
1312
|
can_have_delivery_info: boolean;
|
|
1313
1313
|
opened_at_millis: number;
|
|
1314
1314
|
} | {
|
|
1315
1315
|
id: string;
|
|
1316
|
-
status: "clicked";
|
|
1317
|
-
created_at_millis: number;
|
|
1318
1316
|
html: string | null;
|
|
1319
1317
|
text: string | null;
|
|
1318
|
+
status: "clicked";
|
|
1319
|
+
created_at_millis: number;
|
|
1320
1320
|
subject: string;
|
|
1321
|
-
notification_category_id: string | null;
|
|
1322
|
-
updated_at_millis: number;
|
|
1323
|
-
tsx_source: string;
|
|
1324
|
-
theme_id: string | null;
|
|
1325
1321
|
to: {
|
|
1326
1322
|
type: "user-primary-email";
|
|
1327
1323
|
user_id: string;
|
|
@@ -1333,6 +1329,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1333
1329
|
type: "custom-emails";
|
|
1334
1330
|
emails: string[];
|
|
1335
1331
|
};
|
|
1332
|
+
updated_at_millis: number;
|
|
1333
|
+
tsx_source: string;
|
|
1334
|
+
theme_id: string | null;
|
|
1336
1335
|
variables: Record<string, {} | null>;
|
|
1337
1336
|
skip_deliverability_check: boolean;
|
|
1338
1337
|
scheduled_at_millis: number;
|
|
@@ -1357,21 +1356,18 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1357
1356
|
rendered_at_millis: number;
|
|
1358
1357
|
is_transactional: boolean;
|
|
1359
1358
|
is_high_priority: boolean;
|
|
1359
|
+
notification_category_id: string | null;
|
|
1360
1360
|
started_sending_at_millis: number;
|
|
1361
1361
|
delivered_at_millis: number;
|
|
1362
1362
|
can_have_delivery_info: boolean;
|
|
1363
1363
|
clicked_at_millis: number;
|
|
1364
1364
|
} | {
|
|
1365
1365
|
id: string;
|
|
1366
|
-
status: "marked-as-spam";
|
|
1367
|
-
created_at_millis: number;
|
|
1368
1366
|
html: string | null;
|
|
1369
1367
|
text: string | null;
|
|
1368
|
+
status: "marked-as-spam";
|
|
1369
|
+
created_at_millis: number;
|
|
1370
1370
|
subject: string;
|
|
1371
|
-
notification_category_id: string | null;
|
|
1372
|
-
updated_at_millis: number;
|
|
1373
|
-
tsx_source: string;
|
|
1374
|
-
theme_id: string | null;
|
|
1375
1371
|
to: {
|
|
1376
1372
|
type: "user-primary-email";
|
|
1377
1373
|
user_id: string;
|
|
@@ -1383,6 +1379,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1383
1379
|
type: "custom-emails";
|
|
1384
1380
|
emails: string[];
|
|
1385
1381
|
};
|
|
1382
|
+
updated_at_millis: number;
|
|
1383
|
+
tsx_source: string;
|
|
1384
|
+
theme_id: string | null;
|
|
1386
1385
|
variables: Record<string, {} | null>;
|
|
1387
1386
|
skip_deliverability_check: boolean;
|
|
1388
1387
|
scheduled_at_millis: number;
|
|
@@ -1407,6 +1406,7 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1407
1406
|
rendered_at_millis: number;
|
|
1408
1407
|
is_transactional: boolean;
|
|
1409
1408
|
is_high_priority: boolean;
|
|
1409
|
+
notification_category_id: string | null;
|
|
1410
1410
|
started_sending_at_millis: number;
|
|
1411
1411
|
delivered_at_millis: number;
|
|
1412
1412
|
can_have_delivery_info: boolean;
|