@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
|
@@ -7,9 +7,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
7
7
|
status: "paused";
|
|
8
8
|
id: string;
|
|
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
|
user_id: string;
|
|
15
12
|
type: "user-primary-email";
|
|
@@ -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
|
status: "preparing";
|
|
46
46
|
id: string;
|
|
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
|
user_id: string;
|
|
53
50
|
type: "user-primary-email";
|
|
@@ -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
|
status: "rendering";
|
|
84
84
|
id: string;
|
|
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
|
user_id: string;
|
|
91
88
|
type: "user-primary-email";
|
|
@@ -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
|
status: "render-error";
|
|
123
123
|
id: string;
|
|
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
|
user_id: string;
|
|
130
127
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -164,11 +164,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
164
164
|
id: string;
|
|
165
165
|
subject: string;
|
|
166
166
|
created_at_millis: number;
|
|
167
|
-
html: string | null;
|
|
168
|
-
text: string | null;
|
|
169
|
-
updated_at_millis: number;
|
|
170
|
-
tsx_source: string;
|
|
171
|
-
theme_id: string | null;
|
|
172
167
|
to: {
|
|
173
168
|
user_id: string;
|
|
174
169
|
type: "user-primary-email";
|
|
@@ -180,6 +175,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
180
175
|
type: "custom-emails";
|
|
181
176
|
emails: string[];
|
|
182
177
|
};
|
|
178
|
+
updated_at_millis: number;
|
|
179
|
+
tsx_source: string;
|
|
180
|
+
theme_id: string | null;
|
|
183
181
|
variables: Record<string, {} | null>;
|
|
184
182
|
skip_deliverability_check: boolean;
|
|
185
183
|
scheduled_at_millis: number;
|
|
@@ -202,6 +200,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
202
200
|
has_delivered: boolean;
|
|
203
201
|
started_rendering_at_millis: number;
|
|
204
202
|
rendered_at_millis: number;
|
|
203
|
+
html: string | null;
|
|
204
|
+
text: string | null;
|
|
205
205
|
is_transactional: boolean;
|
|
206
206
|
is_high_priority: boolean;
|
|
207
207
|
notification_category_id: string | null;
|
|
@@ -210,11 +210,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
210
210
|
id: string;
|
|
211
211
|
subject: string;
|
|
212
212
|
created_at_millis: number;
|
|
213
|
-
html: string | null;
|
|
214
|
-
text: string | null;
|
|
215
|
-
updated_at_millis: number;
|
|
216
|
-
tsx_source: string;
|
|
217
|
-
theme_id: string | null;
|
|
218
213
|
to: {
|
|
219
214
|
user_id: string;
|
|
220
215
|
type: "user-primary-email";
|
|
@@ -226,6 +221,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
226
221
|
type: "custom-emails";
|
|
227
222
|
emails: string[];
|
|
228
223
|
};
|
|
224
|
+
updated_at_millis: number;
|
|
225
|
+
tsx_source: string;
|
|
226
|
+
theme_id: string | null;
|
|
229
227
|
variables: Record<string, {} | null>;
|
|
230
228
|
skip_deliverability_check: boolean;
|
|
231
229
|
scheduled_at_millis: number;
|
|
@@ -248,6 +246,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
248
246
|
has_delivered: boolean;
|
|
249
247
|
started_rendering_at_millis: number;
|
|
250
248
|
rendered_at_millis: number;
|
|
249
|
+
html: string | null;
|
|
250
|
+
text: string | null;
|
|
251
251
|
is_transactional: boolean;
|
|
252
252
|
is_high_priority: boolean;
|
|
253
253
|
notification_category_id: string | null;
|
|
@@ -256,11 +256,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
256
256
|
id: string;
|
|
257
257
|
subject: string;
|
|
258
258
|
created_at_millis: number;
|
|
259
|
-
html: string | null;
|
|
260
|
-
text: string | null;
|
|
261
|
-
updated_at_millis: number;
|
|
262
|
-
tsx_source: string;
|
|
263
|
-
theme_id: string | null;
|
|
264
259
|
to: {
|
|
265
260
|
user_id: string;
|
|
266
261
|
type: "user-primary-email";
|
|
@@ -272,6 +267,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
272
267
|
type: "custom-emails";
|
|
273
268
|
emails: string[];
|
|
274
269
|
};
|
|
270
|
+
updated_at_millis: number;
|
|
271
|
+
tsx_source: string;
|
|
272
|
+
theme_id: string | null;
|
|
275
273
|
variables: Record<string, {} | null>;
|
|
276
274
|
skip_deliverability_check: boolean;
|
|
277
275
|
scheduled_at_millis: number;
|
|
@@ -294,6 +292,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
294
292
|
has_delivered: boolean;
|
|
295
293
|
started_rendering_at_millis: number;
|
|
296
294
|
rendered_at_millis: number;
|
|
295
|
+
html: string | null;
|
|
296
|
+
text: string | null;
|
|
297
297
|
is_transactional: boolean;
|
|
298
298
|
is_high_priority: boolean;
|
|
299
299
|
notification_category_id: string | null;
|
|
@@ -303,11 +303,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
303
303
|
id: string;
|
|
304
304
|
subject: string;
|
|
305
305
|
created_at_millis: number;
|
|
306
|
-
html: string | null;
|
|
307
|
-
text: string | null;
|
|
308
|
-
updated_at_millis: number;
|
|
309
|
-
tsx_source: string;
|
|
310
|
-
theme_id: string | null;
|
|
311
306
|
to: {
|
|
312
307
|
user_id: string;
|
|
313
308
|
type: "user-primary-email";
|
|
@@ -319,6 +314,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
319
314
|
type: "custom-emails";
|
|
320
315
|
emails: string[];
|
|
321
316
|
};
|
|
317
|
+
updated_at_millis: number;
|
|
318
|
+
tsx_source: string;
|
|
319
|
+
theme_id: string | null;
|
|
322
320
|
variables: Record<string, {} | null>;
|
|
323
321
|
skip_deliverability_check: boolean;
|
|
324
322
|
scheduled_at_millis: number;
|
|
@@ -341,6 +339,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
341
339
|
has_delivered: boolean;
|
|
342
340
|
started_rendering_at_millis: number;
|
|
343
341
|
rendered_at_millis: number;
|
|
342
|
+
html: string | null;
|
|
343
|
+
text: string | null;
|
|
344
344
|
is_transactional: boolean;
|
|
345
345
|
is_high_priority: boolean;
|
|
346
346
|
notification_category_id: string | null;
|
|
@@ -349,10 +349,10 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
349
349
|
server_error: string;
|
|
350
350
|
} | {
|
|
351
351
|
subject?: string | undefined;
|
|
352
|
-
html?: string | null | undefined;
|
|
353
|
-
text?: string | null | undefined;
|
|
354
352
|
started_rendering_at_millis?: number | undefined;
|
|
355
353
|
rendered_at_millis?: number | undefined;
|
|
354
|
+
html?: string | null | undefined;
|
|
355
|
+
text?: string | null | undefined;
|
|
356
356
|
is_transactional?: boolean | undefined;
|
|
357
357
|
is_high_priority?: boolean | undefined;
|
|
358
358
|
notification_category_id?: string | null | undefined;
|
|
@@ -360,9 +360,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
360
360
|
status: "skipped";
|
|
361
361
|
id: string;
|
|
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
|
user_id: string;
|
|
368
365
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -402,11 +402,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
402
402
|
id: string;
|
|
403
403
|
subject: string;
|
|
404
404
|
created_at_millis: number;
|
|
405
|
-
html: string | null;
|
|
406
|
-
text: string | null;
|
|
407
|
-
updated_at_millis: number;
|
|
408
|
-
tsx_source: string;
|
|
409
|
-
theme_id: string | null;
|
|
410
405
|
to: {
|
|
411
406
|
user_id: string;
|
|
412
407
|
type: "user-primary-email";
|
|
@@ -418,6 +413,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
418
413
|
type: "custom-emails";
|
|
419
414
|
emails: string[];
|
|
420
415
|
};
|
|
416
|
+
updated_at_millis: number;
|
|
417
|
+
tsx_source: string;
|
|
418
|
+
theme_id: string | null;
|
|
421
419
|
variables: Record<string, {} | null>;
|
|
422
420
|
skip_deliverability_check: boolean;
|
|
423
421
|
scheduled_at_millis: number;
|
|
@@ -440,6 +438,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
440
438
|
has_delivered: boolean;
|
|
441
439
|
started_rendering_at_millis: number;
|
|
442
440
|
rendered_at_millis: number;
|
|
441
|
+
html: string | null;
|
|
442
|
+
text: string | null;
|
|
443
443
|
is_transactional: boolean;
|
|
444
444
|
is_high_priority: boolean;
|
|
445
445
|
notification_category_id: string | null;
|
|
@@ -450,11 +450,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
450
450
|
id: string;
|
|
451
451
|
subject: string;
|
|
452
452
|
created_at_millis: number;
|
|
453
|
-
html: string | null;
|
|
454
|
-
text: string | null;
|
|
455
|
-
updated_at_millis: number;
|
|
456
|
-
tsx_source: string;
|
|
457
|
-
theme_id: string | null;
|
|
458
453
|
to: {
|
|
459
454
|
user_id: string;
|
|
460
455
|
type: "user-primary-email";
|
|
@@ -466,6 +461,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
466
461
|
type: "custom-emails";
|
|
467
462
|
emails: string[];
|
|
468
463
|
};
|
|
464
|
+
updated_at_millis: number;
|
|
465
|
+
tsx_source: string;
|
|
466
|
+
theme_id: string | null;
|
|
469
467
|
variables: Record<string, {} | null>;
|
|
470
468
|
skip_deliverability_check: boolean;
|
|
471
469
|
scheduled_at_millis: number;
|
|
@@ -488,6 +486,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
488
486
|
has_delivered: boolean;
|
|
489
487
|
started_rendering_at_millis: number;
|
|
490
488
|
rendered_at_millis: number;
|
|
489
|
+
html: string | null;
|
|
490
|
+
text: string | null;
|
|
491
491
|
is_transactional: boolean;
|
|
492
492
|
is_high_priority: boolean;
|
|
493
493
|
notification_category_id: string | null;
|
|
@@ -498,11 +498,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
498
498
|
id: string;
|
|
499
499
|
subject: string;
|
|
500
500
|
created_at_millis: number;
|
|
501
|
-
html: string | null;
|
|
502
|
-
text: string | null;
|
|
503
|
-
updated_at_millis: number;
|
|
504
|
-
tsx_source: string;
|
|
505
|
-
theme_id: string | null;
|
|
506
501
|
to: {
|
|
507
502
|
user_id: string;
|
|
508
503
|
type: "user-primary-email";
|
|
@@ -514,6 +509,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
514
509
|
type: "custom-emails";
|
|
515
510
|
emails: string[];
|
|
516
511
|
};
|
|
512
|
+
updated_at_millis: number;
|
|
513
|
+
tsx_source: string;
|
|
514
|
+
theme_id: string | null;
|
|
517
515
|
variables: Record<string, {} | null>;
|
|
518
516
|
skip_deliverability_check: boolean;
|
|
519
517
|
scheduled_at_millis: number;
|
|
@@ -536,6 +534,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
536
534
|
has_delivered: boolean;
|
|
537
535
|
started_rendering_at_millis: number;
|
|
538
536
|
rendered_at_millis: number;
|
|
537
|
+
html: string | null;
|
|
538
|
+
text: string | null;
|
|
539
539
|
is_transactional: boolean;
|
|
540
540
|
is_high_priority: boolean;
|
|
541
541
|
notification_category_id: string | null;
|
|
@@ -547,11 +547,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
547
547
|
id: string;
|
|
548
548
|
subject: string;
|
|
549
549
|
created_at_millis: number;
|
|
550
|
-
html: string | null;
|
|
551
|
-
text: string | null;
|
|
552
|
-
updated_at_millis: number;
|
|
553
|
-
tsx_source: string;
|
|
554
|
-
theme_id: string | null;
|
|
555
550
|
to: {
|
|
556
551
|
user_id: string;
|
|
557
552
|
type: "user-primary-email";
|
|
@@ -563,6 +558,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
563
558
|
type: "custom-emails";
|
|
564
559
|
emails: string[];
|
|
565
560
|
};
|
|
561
|
+
updated_at_millis: number;
|
|
562
|
+
tsx_source: string;
|
|
563
|
+
theme_id: string | null;
|
|
566
564
|
variables: Record<string, {} | null>;
|
|
567
565
|
skip_deliverability_check: boolean;
|
|
568
566
|
scheduled_at_millis: number;
|
|
@@ -585,6 +583,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
585
583
|
has_delivered: boolean;
|
|
586
584
|
started_rendering_at_millis: number;
|
|
587
585
|
rendered_at_millis: number;
|
|
586
|
+
html: string | null;
|
|
587
|
+
text: string | null;
|
|
588
588
|
is_transactional: boolean;
|
|
589
589
|
is_high_priority: boolean;
|
|
590
590
|
notification_category_id: string | null;
|
|
@@ -597,11 +597,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
597
597
|
id: string;
|
|
598
598
|
subject: string;
|
|
599
599
|
created_at_millis: number;
|
|
600
|
-
html: string | null;
|
|
601
|
-
text: string | null;
|
|
602
|
-
updated_at_millis: number;
|
|
603
|
-
tsx_source: string;
|
|
604
|
-
theme_id: string | null;
|
|
605
600
|
to: {
|
|
606
601
|
user_id: string;
|
|
607
602
|
type: "user-primary-email";
|
|
@@ -613,6 +608,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
613
608
|
type: "custom-emails";
|
|
614
609
|
emails: string[];
|
|
615
610
|
};
|
|
611
|
+
updated_at_millis: number;
|
|
612
|
+
tsx_source: string;
|
|
613
|
+
theme_id: string | null;
|
|
616
614
|
variables: Record<string, {} | null>;
|
|
617
615
|
skip_deliverability_check: boolean;
|
|
618
616
|
scheduled_at_millis: number;
|
|
@@ -635,6 +633,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
635
633
|
has_delivered: boolean;
|
|
636
634
|
started_rendering_at_millis: number;
|
|
637
635
|
rendered_at_millis: number;
|
|
636
|
+
html: string | null;
|
|
637
|
+
text: string | null;
|
|
638
638
|
is_transactional: boolean;
|
|
639
639
|
is_high_priority: boolean;
|
|
640
640
|
notification_category_id: string | null;
|
|
@@ -647,11 +647,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
647
647
|
id: string;
|
|
648
648
|
subject: string;
|
|
649
649
|
created_at_millis: number;
|
|
650
|
-
html: string | null;
|
|
651
|
-
text: string | null;
|
|
652
|
-
updated_at_millis: number;
|
|
653
|
-
tsx_source: string;
|
|
654
|
-
theme_id: string | null;
|
|
655
650
|
to: {
|
|
656
651
|
user_id: string;
|
|
657
652
|
type: "user-primary-email";
|
|
@@ -663,6 +658,9 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
663
658
|
type: "custom-emails";
|
|
664
659
|
emails: string[];
|
|
665
660
|
};
|
|
661
|
+
updated_at_millis: number;
|
|
662
|
+
tsx_source: string;
|
|
663
|
+
theme_id: string | null;
|
|
666
664
|
variables: Record<string, {} | null>;
|
|
667
665
|
skip_deliverability_check: boolean;
|
|
668
666
|
scheduled_at_millis: number;
|
|
@@ -685,6 +683,8 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
685
683
|
has_delivered: boolean;
|
|
686
684
|
started_rendering_at_millis: number;
|
|
687
685
|
rendered_at_millis: number;
|
|
686
|
+
html: string | null;
|
|
687
|
+
text: string | null;
|
|
688
688
|
is_transactional: boolean;
|
|
689
689
|
is_high_priority: boolean;
|
|
690
690
|
notification_category_id: string | null;
|
|
@@ -727,9 +727,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
727
727
|
status: "paused";
|
|
728
728
|
id: string;
|
|
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
|
user_id: string;
|
|
735
732
|
type: "user-primary-email";
|
|
@@ -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
|
status: "preparing";
|
|
766
766
|
id: string;
|
|
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
|
user_id: string;
|
|
773
770
|
type: "user-primary-email";
|
|
@@ -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
|
status: "rendering";
|
|
804
804
|
id: string;
|
|
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
|
user_id: string;
|
|
811
808
|
type: "user-primary-email";
|
|
@@ -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
|
status: "render-error";
|
|
843
843
|
id: string;
|
|
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
|
user_id: string;
|
|
850
847
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -884,11 +884,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
884
884
|
id: string;
|
|
885
885
|
subject: string;
|
|
886
886
|
created_at_millis: number;
|
|
887
|
-
html: string | null;
|
|
888
|
-
text: string | null;
|
|
889
|
-
updated_at_millis: number;
|
|
890
|
-
tsx_source: string;
|
|
891
|
-
theme_id: string | null;
|
|
892
887
|
to: {
|
|
893
888
|
user_id: string;
|
|
894
889
|
type: "user-primary-email";
|
|
@@ -900,6 +895,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
900
895
|
type: "custom-emails";
|
|
901
896
|
emails: string[];
|
|
902
897
|
};
|
|
898
|
+
updated_at_millis: number;
|
|
899
|
+
tsx_source: string;
|
|
900
|
+
theme_id: string | null;
|
|
903
901
|
variables: Record<string, {} | null>;
|
|
904
902
|
skip_deliverability_check: boolean;
|
|
905
903
|
scheduled_at_millis: number;
|
|
@@ -922,6 +920,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
922
920
|
has_delivered: boolean;
|
|
923
921
|
started_rendering_at_millis: number;
|
|
924
922
|
rendered_at_millis: number;
|
|
923
|
+
html: string | null;
|
|
924
|
+
text: string | null;
|
|
925
925
|
is_transactional: boolean;
|
|
926
926
|
is_high_priority: boolean;
|
|
927
927
|
notification_category_id: string | null;
|
|
@@ -930,11 +930,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
930
930
|
id: string;
|
|
931
931
|
subject: string;
|
|
932
932
|
created_at_millis: number;
|
|
933
|
-
html: string | null;
|
|
934
|
-
text: string | null;
|
|
935
|
-
updated_at_millis: number;
|
|
936
|
-
tsx_source: string;
|
|
937
|
-
theme_id: string | null;
|
|
938
933
|
to: {
|
|
939
934
|
user_id: string;
|
|
940
935
|
type: "user-primary-email";
|
|
@@ -946,6 +941,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
946
941
|
type: "custom-emails";
|
|
947
942
|
emails: string[];
|
|
948
943
|
};
|
|
944
|
+
updated_at_millis: number;
|
|
945
|
+
tsx_source: string;
|
|
946
|
+
theme_id: string | null;
|
|
949
947
|
variables: Record<string, {} | null>;
|
|
950
948
|
skip_deliverability_check: boolean;
|
|
951
949
|
scheduled_at_millis: number;
|
|
@@ -968,6 +966,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
968
966
|
has_delivered: boolean;
|
|
969
967
|
started_rendering_at_millis: number;
|
|
970
968
|
rendered_at_millis: number;
|
|
969
|
+
html: string | null;
|
|
970
|
+
text: string | null;
|
|
971
971
|
is_transactional: boolean;
|
|
972
972
|
is_high_priority: boolean;
|
|
973
973
|
notification_category_id: string | null;
|
|
@@ -976,11 +976,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
976
976
|
id: string;
|
|
977
977
|
subject: string;
|
|
978
978
|
created_at_millis: number;
|
|
979
|
-
html: string | null;
|
|
980
|
-
text: string | null;
|
|
981
|
-
updated_at_millis: number;
|
|
982
|
-
tsx_source: string;
|
|
983
|
-
theme_id: string | null;
|
|
984
979
|
to: {
|
|
985
980
|
user_id: string;
|
|
986
981
|
type: "user-primary-email";
|
|
@@ -992,6 +987,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
992
987
|
type: "custom-emails";
|
|
993
988
|
emails: string[];
|
|
994
989
|
};
|
|
990
|
+
updated_at_millis: number;
|
|
991
|
+
tsx_source: string;
|
|
992
|
+
theme_id: string | null;
|
|
995
993
|
variables: Record<string, {} | null>;
|
|
996
994
|
skip_deliverability_check: boolean;
|
|
997
995
|
scheduled_at_millis: number;
|
|
@@ -1014,6 +1012,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1014
1012
|
has_delivered: boolean;
|
|
1015
1013
|
started_rendering_at_millis: number;
|
|
1016
1014
|
rendered_at_millis: number;
|
|
1015
|
+
html: string | null;
|
|
1016
|
+
text: string | null;
|
|
1017
1017
|
is_transactional: boolean;
|
|
1018
1018
|
is_high_priority: boolean;
|
|
1019
1019
|
notification_category_id: string | null;
|
|
@@ -1023,11 +1023,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1023
1023
|
id: string;
|
|
1024
1024
|
subject: string;
|
|
1025
1025
|
created_at_millis: number;
|
|
1026
|
-
html: string | null;
|
|
1027
|
-
text: string | null;
|
|
1028
|
-
updated_at_millis: number;
|
|
1029
|
-
tsx_source: string;
|
|
1030
|
-
theme_id: string | null;
|
|
1031
1026
|
to: {
|
|
1032
1027
|
user_id: string;
|
|
1033
1028
|
type: "user-primary-email";
|
|
@@ -1039,6 +1034,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1039
1034
|
type: "custom-emails";
|
|
1040
1035
|
emails: string[];
|
|
1041
1036
|
};
|
|
1037
|
+
updated_at_millis: number;
|
|
1038
|
+
tsx_source: string;
|
|
1039
|
+
theme_id: string | null;
|
|
1042
1040
|
variables: Record<string, {} | null>;
|
|
1043
1041
|
skip_deliverability_check: boolean;
|
|
1044
1042
|
scheduled_at_millis: number;
|
|
@@ -1061,6 +1059,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1061
1059
|
has_delivered: boolean;
|
|
1062
1060
|
started_rendering_at_millis: number;
|
|
1063
1061
|
rendered_at_millis: number;
|
|
1062
|
+
html: string | null;
|
|
1063
|
+
text: string | null;
|
|
1064
1064
|
is_transactional: boolean;
|
|
1065
1065
|
is_high_priority: boolean;
|
|
1066
1066
|
notification_category_id: string | null;
|
|
@@ -1069,10 +1069,10 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1069
1069
|
server_error: string;
|
|
1070
1070
|
} | {
|
|
1071
1071
|
subject?: string | undefined;
|
|
1072
|
-
html?: string | null | undefined;
|
|
1073
|
-
text?: string | null | undefined;
|
|
1074
1072
|
started_rendering_at_millis?: number | undefined;
|
|
1075
1073
|
rendered_at_millis?: number | undefined;
|
|
1074
|
+
html?: string | null | undefined;
|
|
1075
|
+
text?: string | null | undefined;
|
|
1076
1076
|
is_transactional?: boolean | undefined;
|
|
1077
1077
|
is_high_priority?: boolean | undefined;
|
|
1078
1078
|
notification_category_id?: string | null | undefined;
|
|
@@ -1080,9 +1080,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1080
1080
|
status: "skipped";
|
|
1081
1081
|
id: string;
|
|
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
|
user_id: string;
|
|
1088
1085
|
type: "user-primary-email";
|
|
@@ -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;
|
|
@@ -1122,11 +1122,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1122
1122
|
id: string;
|
|
1123
1123
|
subject: string;
|
|
1124
1124
|
created_at_millis: number;
|
|
1125
|
-
html: string | null;
|
|
1126
|
-
text: string | null;
|
|
1127
|
-
updated_at_millis: number;
|
|
1128
|
-
tsx_source: string;
|
|
1129
|
-
theme_id: string | null;
|
|
1130
1125
|
to: {
|
|
1131
1126
|
user_id: string;
|
|
1132
1127
|
type: "user-primary-email";
|
|
@@ -1138,6 +1133,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1138
1133
|
type: "custom-emails";
|
|
1139
1134
|
emails: string[];
|
|
1140
1135
|
};
|
|
1136
|
+
updated_at_millis: number;
|
|
1137
|
+
tsx_source: string;
|
|
1138
|
+
theme_id: string | null;
|
|
1141
1139
|
variables: Record<string, {} | null>;
|
|
1142
1140
|
skip_deliverability_check: boolean;
|
|
1143
1141
|
scheduled_at_millis: number;
|
|
@@ -1160,6 +1158,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1160
1158
|
has_delivered: boolean;
|
|
1161
1159
|
started_rendering_at_millis: number;
|
|
1162
1160
|
rendered_at_millis: number;
|
|
1161
|
+
html: string | null;
|
|
1162
|
+
text: string | null;
|
|
1163
1163
|
is_transactional: boolean;
|
|
1164
1164
|
is_high_priority: boolean;
|
|
1165
1165
|
notification_category_id: string | null;
|
|
@@ -1170,11 +1170,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1170
1170
|
id: string;
|
|
1171
1171
|
subject: string;
|
|
1172
1172
|
created_at_millis: number;
|
|
1173
|
-
html: string | null;
|
|
1174
|
-
text: string | null;
|
|
1175
|
-
updated_at_millis: number;
|
|
1176
|
-
tsx_source: string;
|
|
1177
|
-
theme_id: string | null;
|
|
1178
1173
|
to: {
|
|
1179
1174
|
user_id: string;
|
|
1180
1175
|
type: "user-primary-email";
|
|
@@ -1186,6 +1181,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1186
1181
|
type: "custom-emails";
|
|
1187
1182
|
emails: string[];
|
|
1188
1183
|
};
|
|
1184
|
+
updated_at_millis: number;
|
|
1185
|
+
tsx_source: string;
|
|
1186
|
+
theme_id: string | null;
|
|
1189
1187
|
variables: Record<string, {} | null>;
|
|
1190
1188
|
skip_deliverability_check: boolean;
|
|
1191
1189
|
scheduled_at_millis: number;
|
|
@@ -1208,6 +1206,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1208
1206
|
has_delivered: boolean;
|
|
1209
1207
|
started_rendering_at_millis: number;
|
|
1210
1208
|
rendered_at_millis: number;
|
|
1209
|
+
html: string | null;
|
|
1210
|
+
text: string | null;
|
|
1211
1211
|
is_transactional: boolean;
|
|
1212
1212
|
is_high_priority: boolean;
|
|
1213
1213
|
notification_category_id: string | null;
|
|
@@ -1218,11 +1218,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1218
1218
|
id: string;
|
|
1219
1219
|
subject: string;
|
|
1220
1220
|
created_at_millis: number;
|
|
1221
|
-
html: string | null;
|
|
1222
|
-
text: string | null;
|
|
1223
|
-
updated_at_millis: number;
|
|
1224
|
-
tsx_source: string;
|
|
1225
|
-
theme_id: string | null;
|
|
1226
1221
|
to: {
|
|
1227
1222
|
user_id: string;
|
|
1228
1223
|
type: "user-primary-email";
|
|
@@ -1234,6 +1229,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1234
1229
|
type: "custom-emails";
|
|
1235
1230
|
emails: string[];
|
|
1236
1231
|
};
|
|
1232
|
+
updated_at_millis: number;
|
|
1233
|
+
tsx_source: string;
|
|
1234
|
+
theme_id: string | null;
|
|
1237
1235
|
variables: Record<string, {} | null>;
|
|
1238
1236
|
skip_deliverability_check: boolean;
|
|
1239
1237
|
scheduled_at_millis: number;
|
|
@@ -1256,6 +1254,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1256
1254
|
has_delivered: boolean;
|
|
1257
1255
|
started_rendering_at_millis: number;
|
|
1258
1256
|
rendered_at_millis: number;
|
|
1257
|
+
html: string | null;
|
|
1258
|
+
text: string | null;
|
|
1259
1259
|
is_transactional: boolean;
|
|
1260
1260
|
is_high_priority: boolean;
|
|
1261
1261
|
notification_category_id: string | null;
|
|
@@ -1267,11 +1267,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1267
1267
|
id: string;
|
|
1268
1268
|
subject: string;
|
|
1269
1269
|
created_at_millis: number;
|
|
1270
|
-
html: string | null;
|
|
1271
|
-
text: string | null;
|
|
1272
|
-
updated_at_millis: number;
|
|
1273
|
-
tsx_source: string;
|
|
1274
|
-
theme_id: string | null;
|
|
1275
1270
|
to: {
|
|
1276
1271
|
user_id: string;
|
|
1277
1272
|
type: "user-primary-email";
|
|
@@ -1283,6 +1278,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1283
1278
|
type: "custom-emails";
|
|
1284
1279
|
emails: string[];
|
|
1285
1280
|
};
|
|
1281
|
+
updated_at_millis: number;
|
|
1282
|
+
tsx_source: string;
|
|
1283
|
+
theme_id: string | null;
|
|
1286
1284
|
variables: Record<string, {} | null>;
|
|
1287
1285
|
skip_deliverability_check: boolean;
|
|
1288
1286
|
scheduled_at_millis: number;
|
|
@@ -1305,6 +1303,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1305
1303
|
has_delivered: boolean;
|
|
1306
1304
|
started_rendering_at_millis: number;
|
|
1307
1305
|
rendered_at_millis: number;
|
|
1306
|
+
html: string | null;
|
|
1307
|
+
text: string | null;
|
|
1308
1308
|
is_transactional: boolean;
|
|
1309
1309
|
is_high_priority: boolean;
|
|
1310
1310
|
notification_category_id: string | null;
|
|
@@ -1317,11 +1317,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1317
1317
|
id: string;
|
|
1318
1318
|
subject: string;
|
|
1319
1319
|
created_at_millis: number;
|
|
1320
|
-
html: string | null;
|
|
1321
|
-
text: string | null;
|
|
1322
|
-
updated_at_millis: number;
|
|
1323
|
-
tsx_source: string;
|
|
1324
|
-
theme_id: string | null;
|
|
1325
1320
|
to: {
|
|
1326
1321
|
user_id: string;
|
|
1327
1322
|
type: "user-primary-email";
|
|
@@ -1333,6 +1328,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1333
1328
|
type: "custom-emails";
|
|
1334
1329
|
emails: string[];
|
|
1335
1330
|
};
|
|
1331
|
+
updated_at_millis: number;
|
|
1332
|
+
tsx_source: string;
|
|
1333
|
+
theme_id: string | null;
|
|
1336
1334
|
variables: Record<string, {} | null>;
|
|
1337
1335
|
skip_deliverability_check: boolean;
|
|
1338
1336
|
scheduled_at_millis: number;
|
|
@@ -1355,6 +1353,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1355
1353
|
has_delivered: boolean;
|
|
1356
1354
|
started_rendering_at_millis: number;
|
|
1357
1355
|
rendered_at_millis: number;
|
|
1356
|
+
html: string | null;
|
|
1357
|
+
text: string | null;
|
|
1358
1358
|
is_transactional: boolean;
|
|
1359
1359
|
is_high_priority: boolean;
|
|
1360
1360
|
notification_category_id: string | null;
|
|
@@ -1367,11 +1367,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1367
1367
|
id: string;
|
|
1368
1368
|
subject: string;
|
|
1369
1369
|
created_at_millis: number;
|
|
1370
|
-
html: string | null;
|
|
1371
|
-
text: string | null;
|
|
1372
|
-
updated_at_millis: number;
|
|
1373
|
-
tsx_source: string;
|
|
1374
|
-
theme_id: string | null;
|
|
1375
1370
|
to: {
|
|
1376
1371
|
user_id: string;
|
|
1377
1372
|
type: "user-primary-email";
|
|
@@ -1383,6 +1378,9 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1383
1378
|
type: "custom-emails";
|
|
1384
1379
|
emails: string[];
|
|
1385
1380
|
};
|
|
1381
|
+
updated_at_millis: number;
|
|
1382
|
+
tsx_source: string;
|
|
1383
|
+
theme_id: string | null;
|
|
1386
1384
|
variables: Record<string, {} | null>;
|
|
1387
1385
|
skip_deliverability_check: boolean;
|
|
1388
1386
|
scheduled_at_millis: number;
|
|
@@ -1405,6 +1403,8 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1405
1403
|
has_delivered: boolean;
|
|
1406
1404
|
started_rendering_at_millis: number;
|
|
1407
1405
|
rendered_at_millis: number;
|
|
1406
|
+
html: string | null;
|
|
1407
|
+
text: string | null;
|
|
1408
1408
|
is_transactional: boolean;
|
|
1409
1409
|
is_high_priority: boolean;
|
|
1410
1410
|
notification_category_id: string | null;
|