@hexclave/shared 1.0.20 → 1.0.21
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 +28 -28
- package/dist/esm/ai/unified-prompts/reminders.js +1 -1
- package/dist/esm/config/schema.d.ts +28 -28
- package/dist/esm/interface/conversations.d.ts +8 -8
- package/dist/esm/interface/crud/email-outbox.d.ts +134 -134
- package/dist/interface/conversations.d.ts +8 -8
- package/dist/interface/crud/email-outbox.d.ts +134 -134
- package/package.json +1 -1
|
@@ -6,9 +6,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
6
6
|
status: "paused";
|
|
7
7
|
id: string;
|
|
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
|
user_id: string;
|
|
14
11
|
type: "user-primary-email";
|
|
@@ -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
|
status: "preparing";
|
|
45
45
|
id: string;
|
|
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
|
user_id: string;
|
|
52
49
|
type: "user-primary-email";
|
|
@@ -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
|
status: "rendering";
|
|
83
83
|
id: string;
|
|
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
|
user_id: string;
|
|
90
87
|
type: "user-primary-email";
|
|
@@ -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
|
status: "render-error";
|
|
122
122
|
id: string;
|
|
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
|
user_id: string;
|
|
129
126
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -163,11 +163,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
163
163
|
id: string;
|
|
164
164
|
subject: string;
|
|
165
165
|
created_at_millis: number;
|
|
166
|
-
html: string | null;
|
|
167
|
-
text: string | null;
|
|
168
|
-
updated_at_millis: number;
|
|
169
|
-
tsx_source: string;
|
|
170
|
-
theme_id: string | null;
|
|
171
166
|
to: {
|
|
172
167
|
user_id: string;
|
|
173
168
|
type: "user-primary-email";
|
|
@@ -179,6 +174,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
179
174
|
type: "custom-emails";
|
|
180
175
|
emails: string[];
|
|
181
176
|
};
|
|
177
|
+
updated_at_millis: number;
|
|
178
|
+
tsx_source: string;
|
|
179
|
+
theme_id: string | null;
|
|
182
180
|
variables: Record<string, {} | null>;
|
|
183
181
|
skip_deliverability_check: boolean;
|
|
184
182
|
scheduled_at_millis: number;
|
|
@@ -201,6 +199,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
201
199
|
has_delivered: boolean;
|
|
202
200
|
started_rendering_at_millis: number;
|
|
203
201
|
rendered_at_millis: number;
|
|
202
|
+
html: string | null;
|
|
203
|
+
text: string | null;
|
|
204
204
|
is_transactional: boolean;
|
|
205
205
|
is_high_priority: boolean;
|
|
206
206
|
notification_category_id: string | null;
|
|
@@ -209,11 +209,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
209
209
|
id: string;
|
|
210
210
|
subject: string;
|
|
211
211
|
created_at_millis: number;
|
|
212
|
-
html: string | null;
|
|
213
|
-
text: string | null;
|
|
214
|
-
updated_at_millis: number;
|
|
215
|
-
tsx_source: string;
|
|
216
|
-
theme_id: string | null;
|
|
217
212
|
to: {
|
|
218
213
|
user_id: string;
|
|
219
214
|
type: "user-primary-email";
|
|
@@ -225,6 +220,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
225
220
|
type: "custom-emails";
|
|
226
221
|
emails: string[];
|
|
227
222
|
};
|
|
223
|
+
updated_at_millis: number;
|
|
224
|
+
tsx_source: string;
|
|
225
|
+
theme_id: string | null;
|
|
228
226
|
variables: Record<string, {} | null>;
|
|
229
227
|
skip_deliverability_check: boolean;
|
|
230
228
|
scheduled_at_millis: number;
|
|
@@ -247,6 +245,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
247
245
|
has_delivered: boolean;
|
|
248
246
|
started_rendering_at_millis: number;
|
|
249
247
|
rendered_at_millis: number;
|
|
248
|
+
html: string | null;
|
|
249
|
+
text: string | null;
|
|
250
250
|
is_transactional: boolean;
|
|
251
251
|
is_high_priority: boolean;
|
|
252
252
|
notification_category_id: string | null;
|
|
@@ -255,11 +255,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
255
255
|
id: string;
|
|
256
256
|
subject: string;
|
|
257
257
|
created_at_millis: number;
|
|
258
|
-
html: string | null;
|
|
259
|
-
text: string | null;
|
|
260
|
-
updated_at_millis: number;
|
|
261
|
-
tsx_source: string;
|
|
262
|
-
theme_id: string | null;
|
|
263
258
|
to: {
|
|
264
259
|
user_id: string;
|
|
265
260
|
type: "user-primary-email";
|
|
@@ -271,6 +266,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
271
266
|
type: "custom-emails";
|
|
272
267
|
emails: string[];
|
|
273
268
|
};
|
|
269
|
+
updated_at_millis: number;
|
|
270
|
+
tsx_source: string;
|
|
271
|
+
theme_id: string | null;
|
|
274
272
|
variables: Record<string, {} | null>;
|
|
275
273
|
skip_deliverability_check: boolean;
|
|
276
274
|
scheduled_at_millis: number;
|
|
@@ -293,6 +291,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
293
291
|
has_delivered: boolean;
|
|
294
292
|
started_rendering_at_millis: number;
|
|
295
293
|
rendered_at_millis: number;
|
|
294
|
+
html: string | null;
|
|
295
|
+
text: string | null;
|
|
296
296
|
is_transactional: boolean;
|
|
297
297
|
is_high_priority: boolean;
|
|
298
298
|
notification_category_id: string | null;
|
|
@@ -302,11 +302,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
302
302
|
id: string;
|
|
303
303
|
subject: string;
|
|
304
304
|
created_at_millis: number;
|
|
305
|
-
html: string | null;
|
|
306
|
-
text: string | null;
|
|
307
|
-
updated_at_millis: number;
|
|
308
|
-
tsx_source: string;
|
|
309
|
-
theme_id: string | null;
|
|
310
305
|
to: {
|
|
311
306
|
user_id: string;
|
|
312
307
|
type: "user-primary-email";
|
|
@@ -318,6 +313,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
318
313
|
type: "custom-emails";
|
|
319
314
|
emails: string[];
|
|
320
315
|
};
|
|
316
|
+
updated_at_millis: number;
|
|
317
|
+
tsx_source: string;
|
|
318
|
+
theme_id: string | null;
|
|
321
319
|
variables: Record<string, {} | null>;
|
|
322
320
|
skip_deliverability_check: boolean;
|
|
323
321
|
scheduled_at_millis: number;
|
|
@@ -340,6 +338,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
340
338
|
has_delivered: boolean;
|
|
341
339
|
started_rendering_at_millis: number;
|
|
342
340
|
rendered_at_millis: number;
|
|
341
|
+
html: string | null;
|
|
342
|
+
text: string | null;
|
|
343
343
|
is_transactional: boolean;
|
|
344
344
|
is_high_priority: boolean;
|
|
345
345
|
notification_category_id: string | null;
|
|
@@ -348,10 +348,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
348
348
|
server_error: string;
|
|
349
349
|
} | {
|
|
350
350
|
subject?: string | undefined;
|
|
351
|
-
html?: string | null | undefined;
|
|
352
|
-
text?: string | null | undefined;
|
|
353
351
|
started_rendering_at_millis?: number | undefined;
|
|
354
352
|
rendered_at_millis?: number | undefined;
|
|
353
|
+
html?: string | null | undefined;
|
|
354
|
+
text?: string | null | undefined;
|
|
355
355
|
is_transactional?: boolean | undefined;
|
|
356
356
|
is_high_priority?: boolean | undefined;
|
|
357
357
|
notification_category_id?: string | null | undefined;
|
|
@@ -359,9 +359,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
359
359
|
status: "skipped";
|
|
360
360
|
id: string;
|
|
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
|
user_id: string;
|
|
367
364
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -401,11 +401,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
401
401
|
id: string;
|
|
402
402
|
subject: string;
|
|
403
403
|
created_at_millis: number;
|
|
404
|
-
html: string | null;
|
|
405
|
-
text: string | null;
|
|
406
|
-
updated_at_millis: number;
|
|
407
|
-
tsx_source: string;
|
|
408
|
-
theme_id: string | null;
|
|
409
404
|
to: {
|
|
410
405
|
user_id: string;
|
|
411
406
|
type: "user-primary-email";
|
|
@@ -417,6 +412,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
417
412
|
type: "custom-emails";
|
|
418
413
|
emails: string[];
|
|
419
414
|
};
|
|
415
|
+
updated_at_millis: number;
|
|
416
|
+
tsx_source: string;
|
|
417
|
+
theme_id: string | null;
|
|
420
418
|
variables: Record<string, {} | null>;
|
|
421
419
|
skip_deliverability_check: boolean;
|
|
422
420
|
scheduled_at_millis: number;
|
|
@@ -439,6 +437,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
439
437
|
has_delivered: boolean;
|
|
440
438
|
started_rendering_at_millis: number;
|
|
441
439
|
rendered_at_millis: number;
|
|
440
|
+
html: string | null;
|
|
441
|
+
text: string | null;
|
|
442
442
|
is_transactional: boolean;
|
|
443
443
|
is_high_priority: boolean;
|
|
444
444
|
notification_category_id: string | null;
|
|
@@ -449,11 +449,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
449
449
|
id: string;
|
|
450
450
|
subject: string;
|
|
451
451
|
created_at_millis: number;
|
|
452
|
-
html: string | null;
|
|
453
|
-
text: string | null;
|
|
454
|
-
updated_at_millis: number;
|
|
455
|
-
tsx_source: string;
|
|
456
|
-
theme_id: string | null;
|
|
457
452
|
to: {
|
|
458
453
|
user_id: string;
|
|
459
454
|
type: "user-primary-email";
|
|
@@ -465,6 +460,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
465
460
|
type: "custom-emails";
|
|
466
461
|
emails: string[];
|
|
467
462
|
};
|
|
463
|
+
updated_at_millis: number;
|
|
464
|
+
tsx_source: string;
|
|
465
|
+
theme_id: string | null;
|
|
468
466
|
variables: Record<string, {} | null>;
|
|
469
467
|
skip_deliverability_check: boolean;
|
|
470
468
|
scheduled_at_millis: number;
|
|
@@ -487,6 +485,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
487
485
|
has_delivered: boolean;
|
|
488
486
|
started_rendering_at_millis: number;
|
|
489
487
|
rendered_at_millis: number;
|
|
488
|
+
html: string | null;
|
|
489
|
+
text: string | null;
|
|
490
490
|
is_transactional: boolean;
|
|
491
491
|
is_high_priority: boolean;
|
|
492
492
|
notification_category_id: string | null;
|
|
@@ -497,11 +497,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
497
497
|
id: string;
|
|
498
498
|
subject: string;
|
|
499
499
|
created_at_millis: number;
|
|
500
|
-
html: string | null;
|
|
501
|
-
text: string | null;
|
|
502
|
-
updated_at_millis: number;
|
|
503
|
-
tsx_source: string;
|
|
504
|
-
theme_id: string | null;
|
|
505
500
|
to: {
|
|
506
501
|
user_id: string;
|
|
507
502
|
type: "user-primary-email";
|
|
@@ -513,6 +508,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
513
508
|
type: "custom-emails";
|
|
514
509
|
emails: string[];
|
|
515
510
|
};
|
|
511
|
+
updated_at_millis: number;
|
|
512
|
+
tsx_source: string;
|
|
513
|
+
theme_id: string | null;
|
|
516
514
|
variables: Record<string, {} | null>;
|
|
517
515
|
skip_deliverability_check: boolean;
|
|
518
516
|
scheduled_at_millis: number;
|
|
@@ -535,6 +533,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
535
533
|
has_delivered: boolean;
|
|
536
534
|
started_rendering_at_millis: number;
|
|
537
535
|
rendered_at_millis: number;
|
|
536
|
+
html: string | null;
|
|
537
|
+
text: string | null;
|
|
538
538
|
is_transactional: boolean;
|
|
539
539
|
is_high_priority: boolean;
|
|
540
540
|
notification_category_id: string | null;
|
|
@@ -546,11 +546,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
546
546
|
id: string;
|
|
547
547
|
subject: string;
|
|
548
548
|
created_at_millis: number;
|
|
549
|
-
html: string | null;
|
|
550
|
-
text: string | null;
|
|
551
|
-
updated_at_millis: number;
|
|
552
|
-
tsx_source: string;
|
|
553
|
-
theme_id: string | null;
|
|
554
549
|
to: {
|
|
555
550
|
user_id: string;
|
|
556
551
|
type: "user-primary-email";
|
|
@@ -562,6 +557,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
562
557
|
type: "custom-emails";
|
|
563
558
|
emails: string[];
|
|
564
559
|
};
|
|
560
|
+
updated_at_millis: number;
|
|
561
|
+
tsx_source: string;
|
|
562
|
+
theme_id: string | null;
|
|
565
563
|
variables: Record<string, {} | null>;
|
|
566
564
|
skip_deliverability_check: boolean;
|
|
567
565
|
scheduled_at_millis: number;
|
|
@@ -584,6 +582,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
584
582
|
has_delivered: boolean;
|
|
585
583
|
started_rendering_at_millis: number;
|
|
586
584
|
rendered_at_millis: number;
|
|
585
|
+
html: string | null;
|
|
586
|
+
text: string | null;
|
|
587
587
|
is_transactional: boolean;
|
|
588
588
|
is_high_priority: boolean;
|
|
589
589
|
notification_category_id: string | null;
|
|
@@ -596,11 +596,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
596
596
|
id: string;
|
|
597
597
|
subject: string;
|
|
598
598
|
created_at_millis: number;
|
|
599
|
-
html: string | null;
|
|
600
|
-
text: string | null;
|
|
601
|
-
updated_at_millis: number;
|
|
602
|
-
tsx_source: string;
|
|
603
|
-
theme_id: string | null;
|
|
604
599
|
to: {
|
|
605
600
|
user_id: string;
|
|
606
601
|
type: "user-primary-email";
|
|
@@ -612,6 +607,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
612
607
|
type: "custom-emails";
|
|
613
608
|
emails: string[];
|
|
614
609
|
};
|
|
610
|
+
updated_at_millis: number;
|
|
611
|
+
tsx_source: string;
|
|
612
|
+
theme_id: string | null;
|
|
615
613
|
variables: Record<string, {} | null>;
|
|
616
614
|
skip_deliverability_check: boolean;
|
|
617
615
|
scheduled_at_millis: number;
|
|
@@ -634,6 +632,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
634
632
|
has_delivered: boolean;
|
|
635
633
|
started_rendering_at_millis: number;
|
|
636
634
|
rendered_at_millis: number;
|
|
635
|
+
html: string | null;
|
|
636
|
+
text: string | null;
|
|
637
637
|
is_transactional: boolean;
|
|
638
638
|
is_high_priority: boolean;
|
|
639
639
|
notification_category_id: string | null;
|
|
@@ -646,11 +646,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
646
646
|
id: string;
|
|
647
647
|
subject: string;
|
|
648
648
|
created_at_millis: number;
|
|
649
|
-
html: string | null;
|
|
650
|
-
text: string | null;
|
|
651
|
-
updated_at_millis: number;
|
|
652
|
-
tsx_source: string;
|
|
653
|
-
theme_id: string | null;
|
|
654
649
|
to: {
|
|
655
650
|
user_id: string;
|
|
656
651
|
type: "user-primary-email";
|
|
@@ -662,6 +657,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
662
657
|
type: "custom-emails";
|
|
663
658
|
emails: string[];
|
|
664
659
|
};
|
|
660
|
+
updated_at_millis: number;
|
|
661
|
+
tsx_source: string;
|
|
662
|
+
theme_id: string | null;
|
|
665
663
|
variables: Record<string, {} | null>;
|
|
666
664
|
skip_deliverability_check: boolean;
|
|
667
665
|
scheduled_at_millis: number;
|
|
@@ -684,6 +682,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
684
682
|
has_delivered: boolean;
|
|
685
683
|
started_rendering_at_millis: number;
|
|
686
684
|
rendered_at_millis: number;
|
|
685
|
+
html: string | null;
|
|
686
|
+
text: string | null;
|
|
687
687
|
is_transactional: boolean;
|
|
688
688
|
is_high_priority: boolean;
|
|
689
689
|
notification_category_id: string | null;
|
|
@@ -726,9 +726,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
726
726
|
status: "paused";
|
|
727
727
|
id: string;
|
|
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
|
user_id: string;
|
|
734
731
|
type: "user-primary-email";
|
|
@@ -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
|
status: "preparing";
|
|
765
765
|
id: string;
|
|
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
|
user_id: string;
|
|
772
769
|
type: "user-primary-email";
|
|
@@ -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
|
status: "rendering";
|
|
803
803
|
id: string;
|
|
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
|
user_id: string;
|
|
810
807
|
type: "user-primary-email";
|
|
@@ -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
|
status: "render-error";
|
|
842
842
|
id: string;
|
|
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
|
user_id: string;
|
|
849
846
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -883,11 +883,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
883
883
|
id: string;
|
|
884
884
|
subject: string;
|
|
885
885
|
created_at_millis: number;
|
|
886
|
-
html: string | null;
|
|
887
|
-
text: string | null;
|
|
888
|
-
updated_at_millis: number;
|
|
889
|
-
tsx_source: string;
|
|
890
|
-
theme_id: string | null;
|
|
891
886
|
to: {
|
|
892
887
|
user_id: string;
|
|
893
888
|
type: "user-primary-email";
|
|
@@ -899,6 +894,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
899
894
|
type: "custom-emails";
|
|
900
895
|
emails: string[];
|
|
901
896
|
};
|
|
897
|
+
updated_at_millis: number;
|
|
898
|
+
tsx_source: string;
|
|
899
|
+
theme_id: string | null;
|
|
902
900
|
variables: Record<string, {} | null>;
|
|
903
901
|
skip_deliverability_check: boolean;
|
|
904
902
|
scheduled_at_millis: number;
|
|
@@ -921,6 +919,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
921
919
|
has_delivered: boolean;
|
|
922
920
|
started_rendering_at_millis: number;
|
|
923
921
|
rendered_at_millis: number;
|
|
922
|
+
html: string | null;
|
|
923
|
+
text: string | null;
|
|
924
924
|
is_transactional: boolean;
|
|
925
925
|
is_high_priority: boolean;
|
|
926
926
|
notification_category_id: string | null;
|
|
@@ -929,11 +929,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
929
929
|
id: string;
|
|
930
930
|
subject: string;
|
|
931
931
|
created_at_millis: number;
|
|
932
|
-
html: string | null;
|
|
933
|
-
text: string | null;
|
|
934
|
-
updated_at_millis: number;
|
|
935
|
-
tsx_source: string;
|
|
936
|
-
theme_id: string | null;
|
|
937
932
|
to: {
|
|
938
933
|
user_id: string;
|
|
939
934
|
type: "user-primary-email";
|
|
@@ -945,6 +940,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
945
940
|
type: "custom-emails";
|
|
946
941
|
emails: string[];
|
|
947
942
|
};
|
|
943
|
+
updated_at_millis: number;
|
|
944
|
+
tsx_source: string;
|
|
945
|
+
theme_id: string | null;
|
|
948
946
|
variables: Record<string, {} | null>;
|
|
949
947
|
skip_deliverability_check: boolean;
|
|
950
948
|
scheduled_at_millis: number;
|
|
@@ -967,6 +965,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
967
965
|
has_delivered: boolean;
|
|
968
966
|
started_rendering_at_millis: number;
|
|
969
967
|
rendered_at_millis: number;
|
|
968
|
+
html: string | null;
|
|
969
|
+
text: string | null;
|
|
970
970
|
is_transactional: boolean;
|
|
971
971
|
is_high_priority: boolean;
|
|
972
972
|
notification_category_id: string | null;
|
|
@@ -975,11 +975,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
975
975
|
id: string;
|
|
976
976
|
subject: string;
|
|
977
977
|
created_at_millis: number;
|
|
978
|
-
html: string | null;
|
|
979
|
-
text: string | null;
|
|
980
|
-
updated_at_millis: number;
|
|
981
|
-
tsx_source: string;
|
|
982
|
-
theme_id: string | null;
|
|
983
978
|
to: {
|
|
984
979
|
user_id: string;
|
|
985
980
|
type: "user-primary-email";
|
|
@@ -991,6 +986,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
991
986
|
type: "custom-emails";
|
|
992
987
|
emails: string[];
|
|
993
988
|
};
|
|
989
|
+
updated_at_millis: number;
|
|
990
|
+
tsx_source: string;
|
|
991
|
+
theme_id: string | null;
|
|
994
992
|
variables: Record<string, {} | null>;
|
|
995
993
|
skip_deliverability_check: boolean;
|
|
996
994
|
scheduled_at_millis: number;
|
|
@@ -1013,6 +1011,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1013
1011
|
has_delivered: boolean;
|
|
1014
1012
|
started_rendering_at_millis: number;
|
|
1015
1013
|
rendered_at_millis: number;
|
|
1014
|
+
html: string | null;
|
|
1015
|
+
text: string | null;
|
|
1016
1016
|
is_transactional: boolean;
|
|
1017
1017
|
is_high_priority: boolean;
|
|
1018
1018
|
notification_category_id: string | null;
|
|
@@ -1022,11 +1022,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1022
1022
|
id: string;
|
|
1023
1023
|
subject: string;
|
|
1024
1024
|
created_at_millis: number;
|
|
1025
|
-
html: string | null;
|
|
1026
|
-
text: string | null;
|
|
1027
|
-
updated_at_millis: number;
|
|
1028
|
-
tsx_source: string;
|
|
1029
|
-
theme_id: string | null;
|
|
1030
1025
|
to: {
|
|
1031
1026
|
user_id: string;
|
|
1032
1027
|
type: "user-primary-email";
|
|
@@ -1038,6 +1033,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1038
1033
|
type: "custom-emails";
|
|
1039
1034
|
emails: string[];
|
|
1040
1035
|
};
|
|
1036
|
+
updated_at_millis: number;
|
|
1037
|
+
tsx_source: string;
|
|
1038
|
+
theme_id: string | null;
|
|
1041
1039
|
variables: Record<string, {} | null>;
|
|
1042
1040
|
skip_deliverability_check: boolean;
|
|
1043
1041
|
scheduled_at_millis: number;
|
|
@@ -1060,6 +1058,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1060
1058
|
has_delivered: boolean;
|
|
1061
1059
|
started_rendering_at_millis: number;
|
|
1062
1060
|
rendered_at_millis: number;
|
|
1061
|
+
html: string | null;
|
|
1062
|
+
text: string | null;
|
|
1063
1063
|
is_transactional: boolean;
|
|
1064
1064
|
is_high_priority: boolean;
|
|
1065
1065
|
notification_category_id: string | null;
|
|
@@ -1068,10 +1068,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1068
1068
|
server_error: string;
|
|
1069
1069
|
} | {
|
|
1070
1070
|
subject?: string | undefined;
|
|
1071
|
-
html?: string | null | undefined;
|
|
1072
|
-
text?: string | null | undefined;
|
|
1073
1071
|
started_rendering_at_millis?: number | undefined;
|
|
1074
1072
|
rendered_at_millis?: number | undefined;
|
|
1073
|
+
html?: string | null | undefined;
|
|
1074
|
+
text?: string | null | undefined;
|
|
1075
1075
|
is_transactional?: boolean | undefined;
|
|
1076
1076
|
is_high_priority?: boolean | undefined;
|
|
1077
1077
|
notification_category_id?: string | null | undefined;
|
|
@@ -1079,9 +1079,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1079
1079
|
status: "skipped";
|
|
1080
1080
|
id: string;
|
|
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
|
user_id: string;
|
|
1087
1084
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -1121,11 +1121,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1121
1121
|
id: string;
|
|
1122
1122
|
subject: string;
|
|
1123
1123
|
created_at_millis: number;
|
|
1124
|
-
html: string | null;
|
|
1125
|
-
text: string | null;
|
|
1126
|
-
updated_at_millis: number;
|
|
1127
|
-
tsx_source: string;
|
|
1128
|
-
theme_id: string | null;
|
|
1129
1124
|
to: {
|
|
1130
1125
|
user_id: string;
|
|
1131
1126
|
type: "user-primary-email";
|
|
@@ -1137,6 +1132,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1137
1132
|
type: "custom-emails";
|
|
1138
1133
|
emails: string[];
|
|
1139
1134
|
};
|
|
1135
|
+
updated_at_millis: number;
|
|
1136
|
+
tsx_source: string;
|
|
1137
|
+
theme_id: string | null;
|
|
1140
1138
|
variables: Record<string, {} | null>;
|
|
1141
1139
|
skip_deliverability_check: boolean;
|
|
1142
1140
|
scheduled_at_millis: number;
|
|
@@ -1159,6 +1157,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1159
1157
|
has_delivered: boolean;
|
|
1160
1158
|
started_rendering_at_millis: number;
|
|
1161
1159
|
rendered_at_millis: number;
|
|
1160
|
+
html: string | null;
|
|
1161
|
+
text: string | null;
|
|
1162
1162
|
is_transactional: boolean;
|
|
1163
1163
|
is_high_priority: boolean;
|
|
1164
1164
|
notification_category_id: string | null;
|
|
@@ -1169,11 +1169,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1169
1169
|
id: string;
|
|
1170
1170
|
subject: string;
|
|
1171
1171
|
created_at_millis: number;
|
|
1172
|
-
html: string | null;
|
|
1173
|
-
text: string | null;
|
|
1174
|
-
updated_at_millis: number;
|
|
1175
|
-
tsx_source: string;
|
|
1176
|
-
theme_id: string | null;
|
|
1177
1172
|
to: {
|
|
1178
1173
|
user_id: string;
|
|
1179
1174
|
type: "user-primary-email";
|
|
@@ -1185,6 +1180,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1185
1180
|
type: "custom-emails";
|
|
1186
1181
|
emails: string[];
|
|
1187
1182
|
};
|
|
1183
|
+
updated_at_millis: number;
|
|
1184
|
+
tsx_source: string;
|
|
1185
|
+
theme_id: string | null;
|
|
1188
1186
|
variables: Record<string, {} | null>;
|
|
1189
1187
|
skip_deliverability_check: boolean;
|
|
1190
1188
|
scheduled_at_millis: number;
|
|
@@ -1207,6 +1205,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1207
1205
|
has_delivered: boolean;
|
|
1208
1206
|
started_rendering_at_millis: number;
|
|
1209
1207
|
rendered_at_millis: number;
|
|
1208
|
+
html: string | null;
|
|
1209
|
+
text: string | null;
|
|
1210
1210
|
is_transactional: boolean;
|
|
1211
1211
|
is_high_priority: boolean;
|
|
1212
1212
|
notification_category_id: string | null;
|
|
@@ -1217,11 +1217,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1217
1217
|
id: string;
|
|
1218
1218
|
subject: string;
|
|
1219
1219
|
created_at_millis: number;
|
|
1220
|
-
html: string | null;
|
|
1221
|
-
text: string | null;
|
|
1222
|
-
updated_at_millis: number;
|
|
1223
|
-
tsx_source: string;
|
|
1224
|
-
theme_id: string | null;
|
|
1225
1220
|
to: {
|
|
1226
1221
|
user_id: string;
|
|
1227
1222
|
type: "user-primary-email";
|
|
@@ -1233,6 +1228,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1233
1228
|
type: "custom-emails";
|
|
1234
1229
|
emails: string[];
|
|
1235
1230
|
};
|
|
1231
|
+
updated_at_millis: number;
|
|
1232
|
+
tsx_source: string;
|
|
1233
|
+
theme_id: string | null;
|
|
1236
1234
|
variables: Record<string, {} | null>;
|
|
1237
1235
|
skip_deliverability_check: boolean;
|
|
1238
1236
|
scheduled_at_millis: number;
|
|
@@ -1255,6 +1253,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1255
1253
|
has_delivered: boolean;
|
|
1256
1254
|
started_rendering_at_millis: number;
|
|
1257
1255
|
rendered_at_millis: number;
|
|
1256
|
+
html: string | null;
|
|
1257
|
+
text: string | null;
|
|
1258
1258
|
is_transactional: boolean;
|
|
1259
1259
|
is_high_priority: boolean;
|
|
1260
1260
|
notification_category_id: string | null;
|
|
@@ -1266,11 +1266,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1266
1266
|
id: string;
|
|
1267
1267
|
subject: string;
|
|
1268
1268
|
created_at_millis: number;
|
|
1269
|
-
html: string | null;
|
|
1270
|
-
text: string | null;
|
|
1271
|
-
updated_at_millis: number;
|
|
1272
|
-
tsx_source: string;
|
|
1273
|
-
theme_id: string | null;
|
|
1274
1269
|
to: {
|
|
1275
1270
|
user_id: string;
|
|
1276
1271
|
type: "user-primary-email";
|
|
@@ -1282,6 +1277,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1282
1277
|
type: "custom-emails";
|
|
1283
1278
|
emails: string[];
|
|
1284
1279
|
};
|
|
1280
|
+
updated_at_millis: number;
|
|
1281
|
+
tsx_source: string;
|
|
1282
|
+
theme_id: string | null;
|
|
1285
1283
|
variables: Record<string, {} | null>;
|
|
1286
1284
|
skip_deliverability_check: boolean;
|
|
1287
1285
|
scheduled_at_millis: number;
|
|
@@ -1304,6 +1302,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1304
1302
|
has_delivered: boolean;
|
|
1305
1303
|
started_rendering_at_millis: number;
|
|
1306
1304
|
rendered_at_millis: number;
|
|
1305
|
+
html: string | null;
|
|
1306
|
+
text: string | null;
|
|
1307
1307
|
is_transactional: boolean;
|
|
1308
1308
|
is_high_priority: boolean;
|
|
1309
1309
|
notification_category_id: string | null;
|
|
@@ -1316,11 +1316,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1316
1316
|
id: string;
|
|
1317
1317
|
subject: string;
|
|
1318
1318
|
created_at_millis: number;
|
|
1319
|
-
html: string | null;
|
|
1320
|
-
text: string | null;
|
|
1321
|
-
updated_at_millis: number;
|
|
1322
|
-
tsx_source: string;
|
|
1323
|
-
theme_id: string | null;
|
|
1324
1319
|
to: {
|
|
1325
1320
|
user_id: string;
|
|
1326
1321
|
type: "user-primary-email";
|
|
@@ -1332,6 +1327,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1332
1327
|
type: "custom-emails";
|
|
1333
1328
|
emails: string[];
|
|
1334
1329
|
};
|
|
1330
|
+
updated_at_millis: number;
|
|
1331
|
+
tsx_source: string;
|
|
1332
|
+
theme_id: string | null;
|
|
1335
1333
|
variables: Record<string, {} | null>;
|
|
1336
1334
|
skip_deliverability_check: boolean;
|
|
1337
1335
|
scheduled_at_millis: number;
|
|
@@ -1354,6 +1352,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1354
1352
|
has_delivered: boolean;
|
|
1355
1353
|
started_rendering_at_millis: number;
|
|
1356
1354
|
rendered_at_millis: number;
|
|
1355
|
+
html: string | null;
|
|
1356
|
+
text: string | null;
|
|
1357
1357
|
is_transactional: boolean;
|
|
1358
1358
|
is_high_priority: boolean;
|
|
1359
1359
|
notification_category_id: string | null;
|
|
@@ -1366,11 +1366,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1366
1366
|
id: string;
|
|
1367
1367
|
subject: string;
|
|
1368
1368
|
created_at_millis: number;
|
|
1369
|
-
html: string | null;
|
|
1370
|
-
text: string | null;
|
|
1371
|
-
updated_at_millis: number;
|
|
1372
|
-
tsx_source: string;
|
|
1373
|
-
theme_id: string | null;
|
|
1374
1369
|
to: {
|
|
1375
1370
|
user_id: string;
|
|
1376
1371
|
type: "user-primary-email";
|
|
@@ -1382,6 +1377,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1382
1377
|
type: "custom-emails";
|
|
1383
1378
|
emails: string[];
|
|
1384
1379
|
};
|
|
1380
|
+
updated_at_millis: number;
|
|
1381
|
+
tsx_source: string;
|
|
1382
|
+
theme_id: string | null;
|
|
1385
1383
|
variables: Record<string, {} | null>;
|
|
1386
1384
|
skip_deliverability_check: boolean;
|
|
1387
1385
|
scheduled_at_millis: number;
|
|
@@ -1404,6 +1402,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
|
|
|
1404
1402
|
has_delivered: boolean;
|
|
1405
1403
|
started_rendering_at_millis: number;
|
|
1406
1404
|
rendered_at_millis: number;
|
|
1405
|
+
html: string | null;
|
|
1406
|
+
text: string | null;
|
|
1407
1407
|
is_transactional: boolean;
|
|
1408
1408
|
is_high_priority: boolean;
|
|
1409
1409
|
notification_category_id: string | null;
|