@hexclave/shared 1.0.57 → 1.0.59

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.
Files changed (42) hide show
  1. package/dist/{admin-interface-D6kvAhoP.d.ts → admin-interface-v-CiCt1-.d.ts} +5 -5
  2. package/dist/{admin-interface-D6kvAhoP.d.ts.map → admin-interface-v-CiCt1-.d.ts.map} +1 -1
  3. package/dist/{admin-metrics-Cs7JjEj4.d.ts → admin-metrics-bsOkw4YQ.d.ts} +4 -4
  4. package/dist/{admin-metrics-Cs7JjEj4.d.ts.map → admin-metrics-bsOkw4YQ.d.ts.map} +1 -1
  5. package/dist/{client-interface-CnrY_NEa.d.ts → client-interface-DvkciaL0.d.ts} +3 -3
  6. package/dist/{client-interface-CnrY_NEa.d.ts.map → client-interface-DvkciaL0.d.ts.map} +1 -1
  7. package/dist/config/schema.d.ts +1 -1
  8. package/dist/config-authoring.d.ts +1 -1
  9. package/dist/{current-user-Dvf8Ttjo.d.ts → current-user-BBoN3hsn.d.ts} +3 -3
  10. package/dist/{current-user-Dvf8Ttjo.d.ts.map → current-user-BBoN3hsn.d.ts.map} +1 -1
  11. package/dist/{email-outbox-CJXqsXl0.d.ts → email-outbox-B1wmVPRG.d.ts} +131 -131
  12. package/dist/{email-outbox-CJXqsXl0.d.ts.map → email-outbox-B1wmVPRG.d.ts.map} +1 -1
  13. package/dist/esm/config/schema.d.ts +28 -28
  14. package/dist/esm/interface/admin-metrics.d.ts +3 -3
  15. package/dist/esm/interface/conversations.d.ts +3 -3
  16. package/dist/esm/interface/crud/current-user.d.ts +2 -2
  17. package/dist/esm/interface/crud/email-outbox.d.ts +130 -130
  18. package/dist/esm/interface/crud/team-member-profiles.d.ts +10 -10
  19. package/dist/esm/interface/crud/users.d.ts +8 -8
  20. package/dist/esm/interface/webhooks.d.ts +2 -2
  21. package/dist/index.d.ts +3 -3
  22. package/dist/interface/admin-interface.d.ts +1 -1
  23. package/dist/interface/admin-metrics.d.ts +1 -1
  24. package/dist/interface/client-interface.d.ts +1 -1
  25. package/dist/interface/conversations.d.ts +3 -3
  26. package/dist/interface/crud/current-user.d.ts +1 -1
  27. package/dist/interface/crud/email-outbox.d.ts +1 -1
  28. package/dist/interface/crud/team-member-profiles.d.ts +1 -1
  29. package/dist/interface/crud/users.d.ts +1 -1
  30. package/dist/interface/server-interface.d.ts +1 -1
  31. package/dist/interface/webhooks.d.ts +1 -1
  32. package/dist/{schema-CLmaZetm.d.ts → schema-DV0SQUbY.d.ts} +29 -29
  33. package/dist/{schema-CLmaZetm.d.ts.map → schema-DV0SQUbY.d.ts.map} +1 -1
  34. package/dist/{server-interface-DipGGXYo.d.ts → server-interface-Ra_vIHP4.d.ts} +5 -5
  35. package/dist/{server-interface-DipGGXYo.d.ts.map → server-interface-Ra_vIHP4.d.ts.map} +1 -1
  36. package/dist/{team-member-profiles-uTluO8XI.d.ts → team-member-profiles-BoDEqx-0.d.ts} +11 -11
  37. package/dist/{team-member-profiles-uTluO8XI.d.ts.map → team-member-profiles-BoDEqx-0.d.ts.map} +1 -1
  38. package/dist/{users-D9Gnf-Z3.d.ts → users-DHNRwoSz.d.ts} +10 -10
  39. package/dist/{users-D9Gnf-Z3.d.ts.map → users-DHNRwoSz.d.ts.map} +1 -1
  40. package/dist/{webhooks-ByXrdSOx.d.ts → webhooks-8Ts1Clcb.d.ts} +3 -3
  41. package/dist/{webhooks-ByXrdSOx.d.ts.map → webhooks-8Ts1Clcb.d.ts.map} +1 -1
  42. package/package.json +1 -1
@@ -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,6 +162,11 @@ 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;
167
+ updated_at_millis: number;
168
+ tsx_source: string;
169
+ theme_id: string | null;
165
170
  to: {
166
171
  user_id: string;
167
172
  type: "user-primary-email";
@@ -173,11 +178,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
173
178
  type: "custom-emails";
174
179
  emails: string[];
175
180
  };
176
- html: string | null;
177
- text: string | null;
178
- updated_at_millis: number;
179
- tsx_source: string;
180
- theme_id: string | null;
181
181
  variables: Record<string, {} | null>;
182
182
  skip_deliverability_check: boolean;
183
183
  scheduled_at_millis: number;
@@ -208,6 +208,11 @@ 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;
213
+ updated_at_millis: number;
214
+ tsx_source: string;
215
+ theme_id: string | null;
211
216
  to: {
212
217
  user_id: string;
213
218
  type: "user-primary-email";
@@ -219,11 +224,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
219
224
  type: "custom-emails";
220
225
  emails: string[];
221
226
  };
222
- html: string | null;
223
- text: string | null;
224
- updated_at_millis: number;
225
- tsx_source: string;
226
- theme_id: string | null;
227
227
  variables: Record<string, {} | null>;
228
228
  skip_deliverability_check: boolean;
229
229
  scheduled_at_millis: number;
@@ -254,6 +254,11 @@ 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;
259
+ updated_at_millis: number;
260
+ tsx_source: string;
261
+ theme_id: string | null;
257
262
  to: {
258
263
  user_id: string;
259
264
  type: "user-primary-email";
@@ -265,11 +270,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
265
270
  type: "custom-emails";
266
271
  emails: string[];
267
272
  };
268
- html: string | null;
269
- text: string | null;
270
- updated_at_millis: number;
271
- tsx_source: string;
272
- theme_id: string | null;
273
273
  variables: Record<string, {} | null>;
274
274
  skip_deliverability_check: boolean;
275
275
  scheduled_at_millis: number;
@@ -301,6 +301,11 @@ 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;
306
+ updated_at_millis: number;
307
+ tsx_source: string;
308
+ theme_id: string | null;
304
309
  to: {
305
310
  user_id: string;
306
311
  type: "user-primary-email";
@@ -312,11 +317,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
312
317
  type: "custom-emails";
313
318
  emails: string[];
314
319
  };
315
- html: string | null;
316
- text: string | null;
317
- updated_at_millis: number;
318
- tsx_source: string;
319
- theme_id: string | null;
320
320
  variables: Record<string, {} | null>;
321
321
  skip_deliverability_check: boolean;
322
322
  scheduled_at_millis: number;
@@ -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,6 +400,11 @@ 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;
405
+ updated_at_millis: number;
406
+ tsx_source: string;
407
+ theme_id: string | null;
403
408
  to: {
404
409
  user_id: string;
405
410
  type: "user-primary-email";
@@ -411,11 +416,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
411
416
  type: "custom-emails";
412
417
  emails: string[];
413
418
  };
414
- html: string | null;
415
- text: string | null;
416
- updated_at_millis: number;
417
- tsx_source: string;
418
- theme_id: string | null;
419
419
  variables: Record<string, {} | null>;
420
420
  skip_deliverability_check: boolean;
421
421
  scheduled_at_millis: number;
@@ -448,6 +448,11 @@ 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;
453
+ updated_at_millis: number;
454
+ tsx_source: string;
455
+ theme_id: string | null;
451
456
  to: {
452
457
  user_id: string;
453
458
  type: "user-primary-email";
@@ -459,11 +464,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
459
464
  type: "custom-emails";
460
465
  emails: string[];
461
466
  };
462
- html: string | null;
463
- text: string | null;
464
- updated_at_millis: number;
465
- tsx_source: string;
466
- theme_id: string | null;
467
467
  variables: Record<string, {} | null>;
468
468
  skip_deliverability_check: boolean;
469
469
  scheduled_at_millis: number;
@@ -496,6 +496,11 @@ 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;
501
+ updated_at_millis: number;
502
+ tsx_source: string;
503
+ theme_id: string | null;
499
504
  to: {
500
505
  user_id: string;
501
506
  type: "user-primary-email";
@@ -507,11 +512,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
507
512
  type: "custom-emails";
508
513
  emails: string[];
509
514
  };
510
- html: string | null;
511
- text: string | null;
512
- updated_at_millis: number;
513
- tsx_source: string;
514
- theme_id: string | null;
515
515
  variables: Record<string, {} | null>;
516
516
  skip_deliverability_check: boolean;
517
517
  scheduled_at_millis: number;
@@ -545,6 +545,11 @@ 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;
550
+ updated_at_millis: number;
551
+ tsx_source: string;
552
+ theme_id: string | null;
548
553
  to: {
549
554
  user_id: string;
550
555
  type: "user-primary-email";
@@ -556,11 +561,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
556
561
  type: "custom-emails";
557
562
  emails: string[];
558
563
  };
559
- html: string | null;
560
- text: string | null;
561
- updated_at_millis: number;
562
- tsx_source: string;
563
- theme_id: string | null;
564
564
  variables: Record<string, {} | null>;
565
565
  skip_deliverability_check: boolean;
566
566
  scheduled_at_millis: number;
@@ -595,6 +595,11 @@ 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;
600
+ updated_at_millis: number;
601
+ tsx_source: string;
602
+ theme_id: string | null;
598
603
  to: {
599
604
  user_id: string;
600
605
  type: "user-primary-email";
@@ -606,11 +611,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
606
611
  type: "custom-emails";
607
612
  emails: string[];
608
613
  };
609
- html: string | null;
610
- text: string | null;
611
- updated_at_millis: number;
612
- tsx_source: string;
613
- theme_id: string | null;
614
614
  variables: Record<string, {} | null>;
615
615
  skip_deliverability_check: boolean;
616
616
  scheduled_at_millis: number;
@@ -645,6 +645,11 @@ 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;
650
+ updated_at_millis: number;
651
+ tsx_source: string;
652
+ theme_id: string | null;
648
653
  to: {
649
654
  user_id: string;
650
655
  type: "user-primary-email";
@@ -656,11 +661,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
656
661
  type: "custom-emails";
657
662
  emails: string[];
658
663
  };
659
- html: string | null;
660
- text: string | null;
661
- updated_at_millis: number;
662
- tsx_source: string;
663
- theme_id: string | null;
664
664
  variables: Record<string, {} | null>;
665
665
  skip_deliverability_check: boolean;
666
666
  scheduled_at_millis: number;
@@ -725,6 +725,9 @@ declare const emailOutboxCrud: import("../../crud").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: import("../../crud").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: import("../../crud").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: import("../../crud").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: import("../../crud").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: import("../../crud").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: import("../../crud").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: import("../../crud").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,6 +882,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
882
882
  id: string;
883
883
  subject: string;
884
884
  created_at_millis: number;
885
+ html: string | null;
886
+ text: string | null;
887
+ updated_at_millis: number;
888
+ tsx_source: string;
889
+ theme_id: string | null;
885
890
  to: {
886
891
  user_id: string;
887
892
  type: "user-primary-email";
@@ -893,11 +898,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
893
898
  type: "custom-emails";
894
899
  emails: string[];
895
900
  };
896
- html: string | null;
897
- text: string | null;
898
- updated_at_millis: number;
899
- tsx_source: string;
900
- theme_id: string | null;
901
901
  variables: Record<string, {} | null>;
902
902
  skip_deliverability_check: boolean;
903
903
  scheduled_at_millis: number;
@@ -928,6 +928,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
928
928
  id: string;
929
929
  subject: string;
930
930
  created_at_millis: number;
931
+ html: string | null;
932
+ text: string | null;
933
+ updated_at_millis: number;
934
+ tsx_source: string;
935
+ theme_id: string | null;
931
936
  to: {
932
937
  user_id: string;
933
938
  type: "user-primary-email";
@@ -939,11 +944,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
939
944
  type: "custom-emails";
940
945
  emails: string[];
941
946
  };
942
- html: string | null;
943
- text: string | null;
944
- updated_at_millis: number;
945
- tsx_source: string;
946
- theme_id: string | null;
947
947
  variables: Record<string, {} | null>;
948
948
  skip_deliverability_check: boolean;
949
949
  scheduled_at_millis: number;
@@ -974,6 +974,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
974
974
  id: string;
975
975
  subject: string;
976
976
  created_at_millis: number;
977
+ html: string | null;
978
+ text: string | null;
979
+ updated_at_millis: number;
980
+ tsx_source: string;
981
+ theme_id: string | null;
977
982
  to: {
978
983
  user_id: string;
979
984
  type: "user-primary-email";
@@ -985,11 +990,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
985
990
  type: "custom-emails";
986
991
  emails: string[];
987
992
  };
988
- html: string | null;
989
- text: string | null;
990
- updated_at_millis: number;
991
- tsx_source: string;
992
- theme_id: string | null;
993
993
  variables: Record<string, {} | null>;
994
994
  skip_deliverability_check: boolean;
995
995
  scheduled_at_millis: number;
@@ -1021,6 +1021,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1021
1021
  id: string;
1022
1022
  subject: string;
1023
1023
  created_at_millis: number;
1024
+ html: string | null;
1025
+ text: string | null;
1026
+ updated_at_millis: number;
1027
+ tsx_source: string;
1028
+ theme_id: string | null;
1024
1029
  to: {
1025
1030
  user_id: string;
1026
1031
  type: "user-primary-email";
@@ -1032,11 +1037,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1032
1037
  type: "custom-emails";
1033
1038
  emails: string[];
1034
1039
  };
1035
- html: string | null;
1036
- text: string | null;
1037
- updated_at_millis: number;
1038
- tsx_source: string;
1039
- theme_id: string | null;
1040
1040
  variables: Record<string, {} | null>;
1041
1041
  skip_deliverability_check: boolean;
1042
1042
  scheduled_at_millis: number;
@@ -1078,6 +1078,9 @@ declare const emailOutboxCrud: import("../../crud").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: import("../../crud").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,6 +1120,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1120
1120
  id: string;
1121
1121
  subject: string;
1122
1122
  created_at_millis: number;
1123
+ html: string | null;
1124
+ text: string | null;
1125
+ updated_at_millis: number;
1126
+ tsx_source: string;
1127
+ theme_id: string | null;
1123
1128
  to: {
1124
1129
  user_id: string;
1125
1130
  type: "user-primary-email";
@@ -1131,11 +1136,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1131
1136
  type: "custom-emails";
1132
1137
  emails: string[];
1133
1138
  };
1134
- html: string | null;
1135
- text: string | null;
1136
- updated_at_millis: number;
1137
- tsx_source: string;
1138
- theme_id: string | null;
1139
1139
  variables: Record<string, {} | null>;
1140
1140
  skip_deliverability_check: boolean;
1141
1141
  scheduled_at_millis: number;
@@ -1168,6 +1168,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1168
1168
  id: string;
1169
1169
  subject: string;
1170
1170
  created_at_millis: number;
1171
+ html: string | null;
1172
+ text: string | null;
1173
+ updated_at_millis: number;
1174
+ tsx_source: string;
1175
+ theme_id: string | null;
1171
1176
  to: {
1172
1177
  user_id: string;
1173
1178
  type: "user-primary-email";
@@ -1179,11 +1184,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1179
1184
  type: "custom-emails";
1180
1185
  emails: string[];
1181
1186
  };
1182
- html: string | null;
1183
- text: string | null;
1184
- updated_at_millis: number;
1185
- tsx_source: string;
1186
- theme_id: string | null;
1187
1187
  variables: Record<string, {} | null>;
1188
1188
  skip_deliverability_check: boolean;
1189
1189
  scheduled_at_millis: number;
@@ -1216,6 +1216,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1216
1216
  id: string;
1217
1217
  subject: string;
1218
1218
  created_at_millis: number;
1219
+ html: string | null;
1220
+ text: string | null;
1221
+ updated_at_millis: number;
1222
+ tsx_source: string;
1223
+ theme_id: string | null;
1219
1224
  to: {
1220
1225
  user_id: string;
1221
1226
  type: "user-primary-email";
@@ -1227,11 +1232,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1227
1232
  type: "custom-emails";
1228
1233
  emails: string[];
1229
1234
  };
1230
- html: string | null;
1231
- text: string | null;
1232
- updated_at_millis: number;
1233
- tsx_source: string;
1234
- theme_id: string | null;
1235
1235
  variables: Record<string, {} | null>;
1236
1236
  skip_deliverability_check: boolean;
1237
1237
  scheduled_at_millis: number;
@@ -1265,6 +1265,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1265
1265
  id: string;
1266
1266
  subject: string;
1267
1267
  created_at_millis: number;
1268
+ html: string | null;
1269
+ text: string | null;
1270
+ updated_at_millis: number;
1271
+ tsx_source: string;
1272
+ theme_id: string | null;
1268
1273
  to: {
1269
1274
  user_id: string;
1270
1275
  type: "user-primary-email";
@@ -1276,11 +1281,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1276
1281
  type: "custom-emails";
1277
1282
  emails: string[];
1278
1283
  };
1279
- html: string | null;
1280
- text: string | null;
1281
- updated_at_millis: number;
1282
- tsx_source: string;
1283
- theme_id: string | null;
1284
1284
  variables: Record<string, {} | null>;
1285
1285
  skip_deliverability_check: boolean;
1286
1286
  scheduled_at_millis: number;
@@ -1315,6 +1315,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1315
1315
  id: string;
1316
1316
  subject: string;
1317
1317
  created_at_millis: number;
1318
+ html: string | null;
1319
+ text: string | null;
1320
+ updated_at_millis: number;
1321
+ tsx_source: string;
1322
+ theme_id: string | null;
1318
1323
  to: {
1319
1324
  user_id: string;
1320
1325
  type: "user-primary-email";
@@ -1326,11 +1331,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1326
1331
  type: "custom-emails";
1327
1332
  emails: string[];
1328
1333
  };
1329
- html: string | null;
1330
- text: string | null;
1331
- updated_at_millis: number;
1332
- tsx_source: string;
1333
- theme_id: string | null;
1334
1334
  variables: Record<string, {} | null>;
1335
1335
  skip_deliverability_check: boolean;
1336
1336
  scheduled_at_millis: number;
@@ -1365,6 +1365,11 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1365
1365
  id: string;
1366
1366
  subject: string;
1367
1367
  created_at_millis: number;
1368
+ html: string | null;
1369
+ text: string | null;
1370
+ updated_at_millis: number;
1371
+ tsx_source: string;
1372
+ theme_id: string | null;
1368
1373
  to: {
1369
1374
  user_id: string;
1370
1375
  type: "user-primary-email";
@@ -1376,11 +1381,6 @@ declare const emailOutboxCrud: import("../../crud").CrudSchemaFromOptions<{
1376
1381
  type: "custom-emails";
1377
1382
  emails: string[];
1378
1383
  };
1379
- html: string | null;
1380
- text: string | null;
1381
- updated_at_millis: number;
1382
- tsx_source: string;
1383
- theme_id: string | null;
1384
1384
  variables: Record<string, {} | null>;
1385
1385
  skip_deliverability_check: boolean;
1386
1386
  scheduled_at_millis: number;