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