@hexclave/shared 1.0.62 → 1.0.63

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.
@@ -5,6 +5,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
5
5
  status: "paused";
6
6
  id: string;
7
7
  created_at_millis: number;
8
+ updated_at_millis: number;
9
+ tsx_source: string;
10
+ theme_id: string | null;
8
11
  to: {
9
12
  user_id: string;
10
13
  type: "user-primary-email";
@@ -16,9 +19,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
16
19
  type: "custom-emails";
17
20
  emails: string[];
18
21
  };
19
- updated_at_millis: number;
20
- tsx_source: string;
21
- theme_id: string | null;
22
22
  variables: Record<string, {} | null>;
23
23
  skip_deliverability_check: boolean;
24
24
  scheduled_at_millis: number;
@@ -43,6 +43,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
43
43
  status: "preparing";
44
44
  id: string;
45
45
  created_at_millis: number;
46
+ updated_at_millis: number;
47
+ tsx_source: string;
48
+ theme_id: string | null;
46
49
  to: {
47
50
  user_id: string;
48
51
  type: "user-primary-email";
@@ -54,9 +57,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
54
57
  type: "custom-emails";
55
58
  emails: string[];
56
59
  };
57
- updated_at_millis: number;
58
- tsx_source: string;
59
- theme_id: string | null;
60
60
  variables: Record<string, {} | null>;
61
61
  skip_deliverability_check: boolean;
62
62
  scheduled_at_millis: number;
@@ -81,6 +81,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
81
81
  status: "rendering";
82
82
  id: string;
83
83
  created_at_millis: number;
84
+ updated_at_millis: number;
85
+ tsx_source: string;
86
+ theme_id: string | null;
84
87
  to: {
85
88
  user_id: string;
86
89
  type: "user-primary-email";
@@ -92,9 +95,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
92
95
  type: "custom-emails";
93
96
  emails: string[];
94
97
  };
95
- updated_at_millis: number;
96
- tsx_source: string;
97
- theme_id: string | null;
98
98
  variables: Record<string, {} | null>;
99
99
  skip_deliverability_check: boolean;
100
100
  scheduled_at_millis: number;
@@ -120,6 +120,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
120
120
  status: "render-error";
121
121
  id: string;
122
122
  created_at_millis: number;
123
+ updated_at_millis: number;
124
+ tsx_source: string;
125
+ theme_id: string | null;
123
126
  to: {
124
127
  user_id: string;
125
128
  type: "user-primary-email";
@@ -131,9 +134,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
131
134
  type: "custom-emails";
132
135
  emails: string[];
133
136
  };
134
- updated_at_millis: number;
135
- tsx_source: string;
136
- theme_id: string | null;
137
137
  variables: Record<string, {} | null>;
138
138
  skip_deliverability_check: boolean;
139
139
  scheduled_at_millis: number;
@@ -162,8 +162,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
162
162
  id: string;
163
163
  subject: string;
164
164
  created_at_millis: number;
165
- html: string | null;
166
- text: string | null;
165
+ updated_at_millis: number;
166
+ tsx_source: string;
167
+ theme_id: string | null;
167
168
  to: {
168
169
  user_id: string;
169
170
  type: "user-primary-email";
@@ -175,9 +176,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
175
176
  type: "custom-emails";
176
177
  emails: string[];
177
178
  };
178
- updated_at_millis: number;
179
- tsx_source: string;
180
- theme_id: string | null;
181
179
  variables: Record<string, {} | null>;
182
180
  skip_deliverability_check: boolean;
183
181
  scheduled_at_millis: number;
@@ -200,6 +198,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
200
198
  has_delivered: boolean;
201
199
  started_rendering_at_millis: number;
202
200
  rendered_at_millis: number;
201
+ html: string | null;
202
+ text: string | null;
203
203
  is_transactional: boolean;
204
204
  is_high_priority: boolean;
205
205
  notification_category_id: string | null;
@@ -208,8 +208,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
208
208
  id: string;
209
209
  subject: string;
210
210
  created_at_millis: number;
211
- html: string | null;
212
- text: string | null;
211
+ updated_at_millis: number;
212
+ tsx_source: string;
213
+ theme_id: string | null;
213
214
  to: {
214
215
  user_id: string;
215
216
  type: "user-primary-email";
@@ -221,9 +222,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
221
222
  type: "custom-emails";
222
223
  emails: string[];
223
224
  };
224
- updated_at_millis: number;
225
- tsx_source: string;
226
- theme_id: string | null;
227
225
  variables: Record<string, {} | null>;
228
226
  skip_deliverability_check: boolean;
229
227
  scheduled_at_millis: number;
@@ -246,6 +244,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
246
244
  has_delivered: boolean;
247
245
  started_rendering_at_millis: number;
248
246
  rendered_at_millis: number;
247
+ html: string | null;
248
+ text: string | null;
249
249
  is_transactional: boolean;
250
250
  is_high_priority: boolean;
251
251
  notification_category_id: string | null;
@@ -254,8 +254,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
254
254
  id: string;
255
255
  subject: string;
256
256
  created_at_millis: number;
257
- html: string | null;
258
- text: string | null;
257
+ updated_at_millis: number;
258
+ tsx_source: string;
259
+ theme_id: string | null;
259
260
  to: {
260
261
  user_id: string;
261
262
  type: "user-primary-email";
@@ -267,9 +268,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
267
268
  type: "custom-emails";
268
269
  emails: string[];
269
270
  };
270
- updated_at_millis: number;
271
- tsx_source: string;
272
- theme_id: string | null;
273
271
  variables: Record<string, {} | null>;
274
272
  skip_deliverability_check: boolean;
275
273
  scheduled_at_millis: number;
@@ -292,6 +290,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
292
290
  has_delivered: boolean;
293
291
  started_rendering_at_millis: number;
294
292
  rendered_at_millis: number;
293
+ html: string | null;
294
+ text: string | null;
295
295
  is_transactional: boolean;
296
296
  is_high_priority: boolean;
297
297
  notification_category_id: string | null;
@@ -301,8 +301,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
301
301
  id: string;
302
302
  subject: string;
303
303
  created_at_millis: number;
304
- html: string | null;
305
- text: string | null;
304
+ updated_at_millis: number;
305
+ tsx_source: string;
306
+ theme_id: string | null;
306
307
  to: {
307
308
  user_id: string;
308
309
  type: "user-primary-email";
@@ -314,9 +315,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
314
315
  type: "custom-emails";
315
316
  emails: string[];
316
317
  };
317
- updated_at_millis: number;
318
- tsx_source: string;
319
- theme_id: string | null;
320
318
  variables: Record<string, {} | null>;
321
319
  skip_deliverability_check: boolean;
322
320
  scheduled_at_millis: number;
@@ -339,6 +337,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
339
337
  has_delivered: boolean;
340
338
  started_rendering_at_millis: number;
341
339
  rendered_at_millis: number;
340
+ html: string | null;
341
+ text: string | null;
342
342
  is_transactional: boolean;
343
343
  is_high_priority: boolean;
344
344
  notification_category_id: string | null;
@@ -347,10 +347,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
347
347
  server_error: string;
348
348
  } | {
349
349
  subject?: string | undefined;
350
- html?: string | null | undefined;
351
- text?: string | null | undefined;
352
350
  started_rendering_at_millis?: number | undefined;
353
351
  rendered_at_millis?: number | undefined;
352
+ html?: string | null | undefined;
353
+ text?: string | null | undefined;
354
354
  is_transactional?: boolean | undefined;
355
355
  is_high_priority?: boolean | undefined;
356
356
  notification_category_id?: string | null | undefined;
@@ -358,6 +358,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
358
358
  status: "skipped";
359
359
  id: string;
360
360
  created_at_millis: number;
361
+ updated_at_millis: number;
362
+ tsx_source: string;
363
+ theme_id: string | null;
361
364
  to: {
362
365
  user_id: string;
363
366
  type: "user-primary-email";
@@ -369,9 +372,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
369
372
  type: "custom-emails";
370
373
  emails: string[];
371
374
  };
372
- updated_at_millis: number;
373
- tsx_source: string;
374
- theme_id: string | null;
375
375
  variables: Record<string, {} | null>;
376
376
  skip_deliverability_check: boolean;
377
377
  scheduled_at_millis: number;
@@ -400,8 +400,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
400
400
  id: string;
401
401
  subject: string;
402
402
  created_at_millis: number;
403
- html: string | null;
404
- text: string | null;
403
+ updated_at_millis: number;
404
+ tsx_source: string;
405
+ theme_id: string | null;
405
406
  to: {
406
407
  user_id: string;
407
408
  type: "user-primary-email";
@@ -413,9 +414,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
413
414
  type: "custom-emails";
414
415
  emails: string[];
415
416
  };
416
- updated_at_millis: number;
417
- tsx_source: string;
418
- theme_id: string | null;
419
417
  variables: Record<string, {} | null>;
420
418
  skip_deliverability_check: boolean;
421
419
  scheduled_at_millis: number;
@@ -438,6 +436,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
438
436
  has_delivered: boolean;
439
437
  started_rendering_at_millis: number;
440
438
  rendered_at_millis: number;
439
+ html: string | null;
440
+ text: string | null;
441
441
  is_transactional: boolean;
442
442
  is_high_priority: boolean;
443
443
  notification_category_id: string | null;
@@ -448,8 +448,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
448
448
  id: string;
449
449
  subject: string;
450
450
  created_at_millis: number;
451
- html: string | null;
452
- text: string | null;
451
+ updated_at_millis: number;
452
+ tsx_source: string;
453
+ theme_id: string | null;
453
454
  to: {
454
455
  user_id: string;
455
456
  type: "user-primary-email";
@@ -461,9 +462,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
461
462
  type: "custom-emails";
462
463
  emails: string[];
463
464
  };
464
- updated_at_millis: number;
465
- tsx_source: string;
466
- theme_id: string | null;
467
465
  variables: Record<string, {} | null>;
468
466
  skip_deliverability_check: boolean;
469
467
  scheduled_at_millis: number;
@@ -486,6 +484,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
486
484
  has_delivered: boolean;
487
485
  started_rendering_at_millis: number;
488
486
  rendered_at_millis: number;
487
+ html: string | null;
488
+ text: string | null;
489
489
  is_transactional: boolean;
490
490
  is_high_priority: boolean;
491
491
  notification_category_id: string | null;
@@ -496,8 +496,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
496
496
  id: string;
497
497
  subject: string;
498
498
  created_at_millis: number;
499
- html: string | null;
500
- text: string | null;
499
+ updated_at_millis: number;
500
+ tsx_source: string;
501
+ theme_id: string | null;
501
502
  to: {
502
503
  user_id: string;
503
504
  type: "user-primary-email";
@@ -509,9 +510,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
509
510
  type: "custom-emails";
510
511
  emails: string[];
511
512
  };
512
- updated_at_millis: number;
513
- tsx_source: string;
514
- theme_id: string | null;
515
513
  variables: Record<string, {} | null>;
516
514
  skip_deliverability_check: boolean;
517
515
  scheduled_at_millis: number;
@@ -534,6 +532,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
534
532
  has_delivered: boolean;
535
533
  started_rendering_at_millis: number;
536
534
  rendered_at_millis: number;
535
+ html: string | null;
536
+ text: string | null;
537
537
  is_transactional: boolean;
538
538
  is_high_priority: boolean;
539
539
  notification_category_id: string | null;
@@ -545,8 +545,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
545
545
  id: string;
546
546
  subject: string;
547
547
  created_at_millis: number;
548
- html: string | null;
549
- text: string | null;
548
+ updated_at_millis: number;
549
+ tsx_source: string;
550
+ theme_id: string | null;
550
551
  to: {
551
552
  user_id: string;
552
553
  type: "user-primary-email";
@@ -558,9 +559,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
558
559
  type: "custom-emails";
559
560
  emails: string[];
560
561
  };
561
- updated_at_millis: number;
562
- tsx_source: string;
563
- theme_id: string | null;
564
562
  variables: Record<string, {} | null>;
565
563
  skip_deliverability_check: boolean;
566
564
  scheduled_at_millis: number;
@@ -583,6 +581,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
583
581
  has_delivered: boolean;
584
582
  started_rendering_at_millis: number;
585
583
  rendered_at_millis: number;
584
+ html: string | null;
585
+ text: string | null;
586
586
  is_transactional: boolean;
587
587
  is_high_priority: boolean;
588
588
  notification_category_id: string | null;
@@ -595,8 +595,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
595
595
  id: string;
596
596
  subject: string;
597
597
  created_at_millis: number;
598
- html: string | null;
599
- text: string | null;
598
+ updated_at_millis: number;
599
+ tsx_source: string;
600
+ theme_id: string | null;
600
601
  to: {
601
602
  user_id: string;
602
603
  type: "user-primary-email";
@@ -608,9 +609,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
608
609
  type: "custom-emails";
609
610
  emails: string[];
610
611
  };
611
- updated_at_millis: number;
612
- tsx_source: string;
613
- theme_id: string | null;
614
612
  variables: Record<string, {} | null>;
615
613
  skip_deliverability_check: boolean;
616
614
  scheduled_at_millis: number;
@@ -633,6 +631,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
633
631
  has_delivered: boolean;
634
632
  started_rendering_at_millis: number;
635
633
  rendered_at_millis: number;
634
+ html: string | null;
635
+ text: string | null;
636
636
  is_transactional: boolean;
637
637
  is_high_priority: boolean;
638
638
  notification_category_id: string | null;
@@ -645,8 +645,9 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
645
645
  id: string;
646
646
  subject: string;
647
647
  created_at_millis: number;
648
- html: string | null;
649
- text: string | null;
648
+ updated_at_millis: number;
649
+ tsx_source: string;
650
+ theme_id: string | null;
650
651
  to: {
651
652
  user_id: string;
652
653
  type: "user-primary-email";
@@ -658,9 +659,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
658
659
  type: "custom-emails";
659
660
  emails: string[];
660
661
  };
661
- updated_at_millis: number;
662
- tsx_source: string;
663
- theme_id: string | null;
664
662
  variables: Record<string, {} | null>;
665
663
  skip_deliverability_check: boolean;
666
664
  scheduled_at_millis: number;
@@ -683,6 +681,8 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
683
681
  has_delivered: boolean;
684
682
  started_rendering_at_millis: number;
685
683
  rendered_at_millis: number;
684
+ html: string | null;
685
+ text: string | null;
686
686
  is_transactional: boolean;
687
687
  is_high_priority: boolean;
688
688
  notification_category_id: string | null;
@@ -725,6 +725,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
725
725
  status: "paused";
726
726
  id: string;
727
727
  created_at_millis: number;
728
+ updated_at_millis: number;
729
+ tsx_source: string;
730
+ theme_id: string | null;
728
731
  to: {
729
732
  user_id: string;
730
733
  type: "user-primary-email";
@@ -736,9 +739,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
736
739
  type: "custom-emails";
737
740
  emails: string[];
738
741
  };
739
- updated_at_millis: number;
740
- tsx_source: string;
741
- theme_id: string | null;
742
742
  variables: Record<string, {} | null>;
743
743
  skip_deliverability_check: boolean;
744
744
  scheduled_at_millis: number;
@@ -763,6 +763,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
763
763
  status: "preparing";
764
764
  id: string;
765
765
  created_at_millis: number;
766
+ updated_at_millis: number;
767
+ tsx_source: string;
768
+ theme_id: string | null;
766
769
  to: {
767
770
  user_id: string;
768
771
  type: "user-primary-email";
@@ -774,9 +777,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
774
777
  type: "custom-emails";
775
778
  emails: string[];
776
779
  };
777
- updated_at_millis: number;
778
- tsx_source: string;
779
- theme_id: string | null;
780
780
  variables: Record<string, {} | null>;
781
781
  skip_deliverability_check: boolean;
782
782
  scheduled_at_millis: number;
@@ -801,6 +801,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
801
801
  status: "rendering";
802
802
  id: string;
803
803
  created_at_millis: number;
804
+ updated_at_millis: number;
805
+ tsx_source: string;
806
+ theme_id: string | null;
804
807
  to: {
805
808
  user_id: string;
806
809
  type: "user-primary-email";
@@ -812,9 +815,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
812
815
  type: "custom-emails";
813
816
  emails: string[];
814
817
  };
815
- updated_at_millis: number;
816
- tsx_source: string;
817
- theme_id: string | null;
818
818
  variables: Record<string, {} | null>;
819
819
  skip_deliverability_check: boolean;
820
820
  scheduled_at_millis: number;
@@ -840,6 +840,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
840
840
  status: "render-error";
841
841
  id: string;
842
842
  created_at_millis: number;
843
+ updated_at_millis: number;
844
+ tsx_source: string;
845
+ theme_id: string | null;
843
846
  to: {
844
847
  user_id: string;
845
848
  type: "user-primary-email";
@@ -851,9 +854,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
851
854
  type: "custom-emails";
852
855
  emails: string[];
853
856
  };
854
- updated_at_millis: number;
855
- tsx_source: string;
856
- theme_id: string | null;
857
857
  variables: Record<string, {} | null>;
858
858
  skip_deliverability_check: boolean;
859
859
  scheduled_at_millis: number;
@@ -882,8 +882,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
882
882
  id: string;
883
883
  subject: string;
884
884
  created_at_millis: number;
885
- html: string | null;
886
- text: string | null;
885
+ updated_at_millis: number;
886
+ tsx_source: string;
887
+ theme_id: string | null;
887
888
  to: {
888
889
  user_id: string;
889
890
  type: "user-primary-email";
@@ -895,9 +896,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
895
896
  type: "custom-emails";
896
897
  emails: string[];
897
898
  };
898
- updated_at_millis: number;
899
- tsx_source: string;
900
- theme_id: string | null;
901
899
  variables: Record<string, {} | null>;
902
900
  skip_deliverability_check: boolean;
903
901
  scheduled_at_millis: number;
@@ -920,6 +918,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
920
918
  has_delivered: boolean;
921
919
  started_rendering_at_millis: number;
922
920
  rendered_at_millis: number;
921
+ html: string | null;
922
+ text: string | null;
923
923
  is_transactional: boolean;
924
924
  is_high_priority: boolean;
925
925
  notification_category_id: string | null;
@@ -928,8 +928,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
928
928
  id: string;
929
929
  subject: string;
930
930
  created_at_millis: number;
931
- html: string | null;
932
- text: string | null;
931
+ updated_at_millis: number;
932
+ tsx_source: string;
933
+ theme_id: string | null;
933
934
  to: {
934
935
  user_id: string;
935
936
  type: "user-primary-email";
@@ -941,9 +942,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
941
942
  type: "custom-emails";
942
943
  emails: string[];
943
944
  };
944
- updated_at_millis: number;
945
- tsx_source: string;
946
- theme_id: string | null;
947
945
  variables: Record<string, {} | null>;
948
946
  skip_deliverability_check: boolean;
949
947
  scheduled_at_millis: number;
@@ -966,6 +964,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
966
964
  has_delivered: boolean;
967
965
  started_rendering_at_millis: number;
968
966
  rendered_at_millis: number;
967
+ html: string | null;
968
+ text: string | null;
969
969
  is_transactional: boolean;
970
970
  is_high_priority: boolean;
971
971
  notification_category_id: string | null;
@@ -974,8 +974,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
974
974
  id: string;
975
975
  subject: string;
976
976
  created_at_millis: number;
977
- html: string | null;
978
- text: string | null;
977
+ updated_at_millis: number;
978
+ tsx_source: string;
979
+ theme_id: string | null;
979
980
  to: {
980
981
  user_id: string;
981
982
  type: "user-primary-email";
@@ -987,9 +988,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
987
988
  type: "custom-emails";
988
989
  emails: string[];
989
990
  };
990
- updated_at_millis: number;
991
- tsx_source: string;
992
- theme_id: string | null;
993
991
  variables: Record<string, {} | null>;
994
992
  skip_deliverability_check: boolean;
995
993
  scheduled_at_millis: number;
@@ -1012,6 +1010,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1012
1010
  has_delivered: boolean;
1013
1011
  started_rendering_at_millis: number;
1014
1012
  rendered_at_millis: number;
1013
+ html: string | null;
1014
+ text: string | null;
1015
1015
  is_transactional: boolean;
1016
1016
  is_high_priority: boolean;
1017
1017
  notification_category_id: string | null;
@@ -1021,8 +1021,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1021
1021
  id: string;
1022
1022
  subject: string;
1023
1023
  created_at_millis: number;
1024
- html: string | null;
1025
- text: string | null;
1024
+ updated_at_millis: number;
1025
+ tsx_source: string;
1026
+ theme_id: string | null;
1026
1027
  to: {
1027
1028
  user_id: string;
1028
1029
  type: "user-primary-email";
@@ -1034,9 +1035,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1034
1035
  type: "custom-emails";
1035
1036
  emails: string[];
1036
1037
  };
1037
- updated_at_millis: number;
1038
- tsx_source: string;
1039
- theme_id: string | null;
1040
1038
  variables: Record<string, {} | null>;
1041
1039
  skip_deliverability_check: boolean;
1042
1040
  scheduled_at_millis: number;
@@ -1059,6 +1057,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1059
1057
  has_delivered: boolean;
1060
1058
  started_rendering_at_millis: number;
1061
1059
  rendered_at_millis: number;
1060
+ html: string | null;
1061
+ text: string | null;
1062
1062
  is_transactional: boolean;
1063
1063
  is_high_priority: boolean;
1064
1064
  notification_category_id: string | null;
@@ -1067,10 +1067,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1067
1067
  server_error: string;
1068
1068
  } | {
1069
1069
  subject?: string | undefined;
1070
- html?: string | null | undefined;
1071
- text?: string | null | undefined;
1072
1070
  started_rendering_at_millis?: number | undefined;
1073
1071
  rendered_at_millis?: number | undefined;
1072
+ html?: string | null | undefined;
1073
+ text?: string | null | undefined;
1074
1074
  is_transactional?: boolean | undefined;
1075
1075
  is_high_priority?: boolean | undefined;
1076
1076
  notification_category_id?: string | null | undefined;
@@ -1078,6 +1078,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1078
1078
  status: "skipped";
1079
1079
  id: string;
1080
1080
  created_at_millis: number;
1081
+ updated_at_millis: number;
1082
+ tsx_source: string;
1083
+ theme_id: string | null;
1081
1084
  to: {
1082
1085
  user_id: string;
1083
1086
  type: "user-primary-email";
@@ -1089,9 +1092,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1089
1092
  type: "custom-emails";
1090
1093
  emails: string[];
1091
1094
  };
1092
- updated_at_millis: number;
1093
- tsx_source: string;
1094
- theme_id: string | null;
1095
1095
  variables: Record<string, {} | null>;
1096
1096
  skip_deliverability_check: boolean;
1097
1097
  scheduled_at_millis: number;
@@ -1120,8 +1120,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1120
1120
  id: string;
1121
1121
  subject: string;
1122
1122
  created_at_millis: number;
1123
- html: string | null;
1124
- text: string | null;
1123
+ updated_at_millis: number;
1124
+ tsx_source: string;
1125
+ theme_id: string | null;
1125
1126
  to: {
1126
1127
  user_id: string;
1127
1128
  type: "user-primary-email";
@@ -1133,9 +1134,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1133
1134
  type: "custom-emails";
1134
1135
  emails: string[];
1135
1136
  };
1136
- updated_at_millis: number;
1137
- tsx_source: string;
1138
- theme_id: string | null;
1139
1137
  variables: Record<string, {} | null>;
1140
1138
  skip_deliverability_check: boolean;
1141
1139
  scheduled_at_millis: number;
@@ -1158,6 +1156,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1158
1156
  has_delivered: boolean;
1159
1157
  started_rendering_at_millis: number;
1160
1158
  rendered_at_millis: number;
1159
+ html: string | null;
1160
+ text: string | null;
1161
1161
  is_transactional: boolean;
1162
1162
  is_high_priority: boolean;
1163
1163
  notification_category_id: string | null;
@@ -1168,8 +1168,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1168
1168
  id: string;
1169
1169
  subject: string;
1170
1170
  created_at_millis: number;
1171
- html: string | null;
1172
- text: string | null;
1171
+ updated_at_millis: number;
1172
+ tsx_source: string;
1173
+ theme_id: string | null;
1173
1174
  to: {
1174
1175
  user_id: string;
1175
1176
  type: "user-primary-email";
@@ -1181,9 +1182,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1181
1182
  type: "custom-emails";
1182
1183
  emails: string[];
1183
1184
  };
1184
- updated_at_millis: number;
1185
- tsx_source: string;
1186
- theme_id: string | null;
1187
1185
  variables: Record<string, {} | null>;
1188
1186
  skip_deliverability_check: boolean;
1189
1187
  scheduled_at_millis: number;
@@ -1206,6 +1204,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1206
1204
  has_delivered: boolean;
1207
1205
  started_rendering_at_millis: number;
1208
1206
  rendered_at_millis: number;
1207
+ html: string | null;
1208
+ text: string | null;
1209
1209
  is_transactional: boolean;
1210
1210
  is_high_priority: boolean;
1211
1211
  notification_category_id: string | null;
@@ -1216,8 +1216,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1216
1216
  id: string;
1217
1217
  subject: string;
1218
1218
  created_at_millis: number;
1219
- html: string | null;
1220
- text: string | null;
1219
+ updated_at_millis: number;
1220
+ tsx_source: string;
1221
+ theme_id: string | null;
1221
1222
  to: {
1222
1223
  user_id: string;
1223
1224
  type: "user-primary-email";
@@ -1229,9 +1230,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1229
1230
  type: "custom-emails";
1230
1231
  emails: string[];
1231
1232
  };
1232
- updated_at_millis: number;
1233
- tsx_source: string;
1234
- theme_id: string | null;
1235
1233
  variables: Record<string, {} | null>;
1236
1234
  skip_deliverability_check: boolean;
1237
1235
  scheduled_at_millis: number;
@@ -1254,6 +1252,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1254
1252
  has_delivered: boolean;
1255
1253
  started_rendering_at_millis: number;
1256
1254
  rendered_at_millis: number;
1255
+ html: string | null;
1256
+ text: string | null;
1257
1257
  is_transactional: boolean;
1258
1258
  is_high_priority: boolean;
1259
1259
  notification_category_id: string | null;
@@ -1265,8 +1265,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1265
1265
  id: string;
1266
1266
  subject: string;
1267
1267
  created_at_millis: number;
1268
- html: string | null;
1269
- text: string | null;
1268
+ updated_at_millis: number;
1269
+ tsx_source: string;
1270
+ theme_id: string | null;
1270
1271
  to: {
1271
1272
  user_id: string;
1272
1273
  type: "user-primary-email";
@@ -1278,9 +1279,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1278
1279
  type: "custom-emails";
1279
1280
  emails: string[];
1280
1281
  };
1281
- updated_at_millis: number;
1282
- tsx_source: string;
1283
- theme_id: string | null;
1284
1282
  variables: Record<string, {} | null>;
1285
1283
  skip_deliverability_check: boolean;
1286
1284
  scheduled_at_millis: number;
@@ -1303,6 +1301,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1303
1301
  has_delivered: boolean;
1304
1302
  started_rendering_at_millis: number;
1305
1303
  rendered_at_millis: number;
1304
+ html: string | null;
1305
+ text: string | null;
1306
1306
  is_transactional: boolean;
1307
1307
  is_high_priority: boolean;
1308
1308
  notification_category_id: string | null;
@@ -1315,8 +1315,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1315
1315
  id: string;
1316
1316
  subject: string;
1317
1317
  created_at_millis: number;
1318
- html: string | null;
1319
- text: string | null;
1318
+ updated_at_millis: number;
1319
+ tsx_source: string;
1320
+ theme_id: string | null;
1320
1321
  to: {
1321
1322
  user_id: string;
1322
1323
  type: "user-primary-email";
@@ -1328,9 +1329,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1328
1329
  type: "custom-emails";
1329
1330
  emails: string[];
1330
1331
  };
1331
- updated_at_millis: number;
1332
- tsx_source: string;
1333
- theme_id: string | null;
1334
1332
  variables: Record<string, {} | null>;
1335
1333
  skip_deliverability_check: boolean;
1336
1334
  scheduled_at_millis: number;
@@ -1353,6 +1351,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1353
1351
  has_delivered: boolean;
1354
1352
  started_rendering_at_millis: number;
1355
1353
  rendered_at_millis: number;
1354
+ html: string | null;
1355
+ text: string | null;
1356
1356
  is_transactional: boolean;
1357
1357
  is_high_priority: boolean;
1358
1358
  notification_category_id: string | null;
@@ -1365,8 +1365,9 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1365
1365
  id: string;
1366
1366
  subject: string;
1367
1367
  created_at_millis: number;
1368
- html: string | null;
1369
- text: string | null;
1368
+ updated_at_millis: number;
1369
+ tsx_source: string;
1370
+ theme_id: string | null;
1370
1371
  to: {
1371
1372
  user_id: string;
1372
1373
  type: "user-primary-email";
@@ -1378,9 +1379,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1378
1379
  type: "custom-emails";
1379
1380
  emails: string[];
1380
1381
  };
1381
- updated_at_millis: number;
1382
- tsx_source: string;
1383
- theme_id: string | null;
1384
1382
  variables: Record<string, {} | null>;
1385
1383
  skip_deliverability_check: boolean;
1386
1384
  scheduled_at_millis: number;
@@ -1403,6 +1401,8 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1403
1401
  has_delivered: boolean;
1404
1402
  started_rendering_at_millis: number;
1405
1403
  rendered_at_millis: number;
1404
+ html: string | null;
1405
+ text: string | null;
1406
1406
  is_transactional: boolean;
1407
1407
  is_high_priority: boolean;
1408
1408
  notification_category_id: string | null;
@@ -1461,4 +1461,4 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1461
1461
  type EmailOutboxCrud = CrudTypeOf<typeof emailOutboxCrud>;
1462
1462
  //#endregion
1463
1463
  export { emailOutboxUpdateSchema as i, emailOutboxCrud as n, emailOutboxReadSchema as r, EmailOutboxCrud as t };
1464
- //# sourceMappingURL=email-outbox-CqzwInBL.d.ts.map
1464
+ //# sourceMappingURL=email-outbox-CYmVerum.d.ts.map