@hexclave/shared 1.0.9 → 1.0.10
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 -0
- package/dist/ai/unified-prompts/reminders.js.map +1 -1
- package/dist/config/schema.d.ts +155 -155
- package/dist/esm/ai/unified-prompts/reminders.js +1 -0
- package/dist/esm/ai/unified-prompts/reminders.js.map +1 -1
- package/dist/esm/config/schema.d.ts +155 -155
- package/dist/esm/interface/crud/email-outbox.d.ts +44 -44
- package/dist/interface/crud/email-outbox.d.ts +44 -44
- package/package.json +1 -1
- package/src/ai/unified-prompts/reminders.ts +1 -0
|
@@ -164,6 +164,8 @@ 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;
|
|
167
169
|
updated_at_millis: number;
|
|
168
170
|
tsx_source: string;
|
|
169
171
|
theme_id: string | null;
|
|
@@ -200,8 +202,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
200
202
|
has_delivered: boolean;
|
|
201
203
|
started_rendering_at_millis: number;
|
|
202
204
|
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,6 +210,8 @@ 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;
|
|
213
215
|
updated_at_millis: number;
|
|
214
216
|
tsx_source: string;
|
|
215
217
|
theme_id: string | null;
|
|
@@ -246,8 +248,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
246
248
|
has_delivered: boolean;
|
|
247
249
|
started_rendering_at_millis: number;
|
|
248
250
|
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,6 +256,8 @@ 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;
|
|
259
261
|
updated_at_millis: number;
|
|
260
262
|
tsx_source: string;
|
|
261
263
|
theme_id: string | null;
|
|
@@ -292,8 +294,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
292
294
|
has_delivered: boolean;
|
|
293
295
|
started_rendering_at_millis: number;
|
|
294
296
|
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,6 +303,8 @@ 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;
|
|
306
308
|
updated_at_millis: number;
|
|
307
309
|
tsx_source: string;
|
|
308
310
|
theme_id: string | null;
|
|
@@ -339,8 +341,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
339
341
|
has_delivered: boolean;
|
|
340
342
|
started_rendering_at_millis: number;
|
|
341
343
|
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
|
-
started_rendering_at_millis?: number | undefined;
|
|
353
|
-
rendered_at_millis?: number | undefined;
|
|
354
352
|
html?: string | null | undefined;
|
|
355
353
|
text?: string | null | undefined;
|
|
354
|
+
started_rendering_at_millis?: number | undefined;
|
|
355
|
+
rendered_at_millis?: number | undefined;
|
|
356
356
|
is_transactional?: boolean | undefined;
|
|
357
357
|
is_high_priority?: boolean | undefined;
|
|
358
358
|
notification_category_id?: string | null | undefined;
|
|
@@ -402,6 +402,8 @@ 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;
|
|
405
407
|
updated_at_millis: number;
|
|
406
408
|
tsx_source: string;
|
|
407
409
|
theme_id: string | null;
|
|
@@ -438,8 +440,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
438
440
|
has_delivered: boolean;
|
|
439
441
|
started_rendering_at_millis: number;
|
|
440
442
|
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,6 +450,8 @@ 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;
|
|
453
455
|
updated_at_millis: number;
|
|
454
456
|
tsx_source: string;
|
|
455
457
|
theme_id: string | null;
|
|
@@ -486,8 +488,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
486
488
|
has_delivered: boolean;
|
|
487
489
|
started_rendering_at_millis: number;
|
|
488
490
|
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,6 +498,8 @@ 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;
|
|
501
503
|
updated_at_millis: number;
|
|
502
504
|
tsx_source: string;
|
|
503
505
|
theme_id: string | null;
|
|
@@ -534,8 +536,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
534
536
|
has_delivered: boolean;
|
|
535
537
|
started_rendering_at_millis: number;
|
|
536
538
|
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,6 +547,8 @@ 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;
|
|
550
552
|
updated_at_millis: number;
|
|
551
553
|
tsx_source: string;
|
|
552
554
|
theme_id: string | null;
|
|
@@ -583,8 +585,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
583
585
|
has_delivered: boolean;
|
|
584
586
|
started_rendering_at_millis: number;
|
|
585
587
|
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,6 +597,8 @@ 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;
|
|
600
602
|
updated_at_millis: number;
|
|
601
603
|
tsx_source: string;
|
|
602
604
|
theme_id: string | null;
|
|
@@ -633,8 +635,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
633
635
|
has_delivered: boolean;
|
|
634
636
|
started_rendering_at_millis: number;
|
|
635
637
|
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,6 +647,8 @@ 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;
|
|
650
652
|
updated_at_millis: number;
|
|
651
653
|
tsx_source: string;
|
|
652
654
|
theme_id: string | null;
|
|
@@ -683,8 +685,6 @@ declare const emailOutboxReadSchema: yup$1.MixedSchema<{
|
|
|
683
685
|
has_delivered: boolean;
|
|
684
686
|
started_rendering_at_millis: number;
|
|
685
687
|
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;
|
|
@@ -884,6 +884,8 @@ 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;
|
|
887
889
|
updated_at_millis: number;
|
|
888
890
|
tsx_source: string;
|
|
889
891
|
theme_id: string | null;
|
|
@@ -920,8 +922,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
920
922
|
has_delivered: boolean;
|
|
921
923
|
started_rendering_at_millis: number;
|
|
922
924
|
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,6 +930,8 @@ 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;
|
|
933
935
|
updated_at_millis: number;
|
|
934
936
|
tsx_source: string;
|
|
935
937
|
theme_id: string | null;
|
|
@@ -966,8 +968,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
966
968
|
has_delivered: boolean;
|
|
967
969
|
started_rendering_at_millis: number;
|
|
968
970
|
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,6 +976,8 @@ 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;
|
|
979
981
|
updated_at_millis: number;
|
|
980
982
|
tsx_source: string;
|
|
981
983
|
theme_id: string | null;
|
|
@@ -1012,8 +1014,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1012
1014
|
has_delivered: boolean;
|
|
1013
1015
|
started_rendering_at_millis: number;
|
|
1014
1016
|
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,6 +1023,8 @@ 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;
|
|
1026
1028
|
updated_at_millis: number;
|
|
1027
1029
|
tsx_source: string;
|
|
1028
1030
|
theme_id: string | null;
|
|
@@ -1059,8 +1061,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1059
1061
|
has_delivered: boolean;
|
|
1060
1062
|
started_rendering_at_millis: number;
|
|
1061
1063
|
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
|
-
started_rendering_at_millis?: number | undefined;
|
|
1073
|
-
rendered_at_millis?: number | undefined;
|
|
1074
1072
|
html?: string | null | undefined;
|
|
1075
1073
|
text?: string | null | undefined;
|
|
1074
|
+
started_rendering_at_millis?: number | undefined;
|
|
1075
|
+
rendered_at_millis?: number | undefined;
|
|
1076
1076
|
is_transactional?: boolean | undefined;
|
|
1077
1077
|
is_high_priority?: boolean | undefined;
|
|
1078
1078
|
notification_category_id?: string | null | undefined;
|
|
@@ -1122,6 +1122,8 @@ 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;
|
|
1125
1127
|
updated_at_millis: number;
|
|
1126
1128
|
tsx_source: string;
|
|
1127
1129
|
theme_id: string | null;
|
|
@@ -1158,8 +1160,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1158
1160
|
has_delivered: boolean;
|
|
1159
1161
|
started_rendering_at_millis: number;
|
|
1160
1162
|
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,6 +1170,8 @@ 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;
|
|
1173
1175
|
updated_at_millis: number;
|
|
1174
1176
|
tsx_source: string;
|
|
1175
1177
|
theme_id: string | null;
|
|
@@ -1206,8 +1208,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1206
1208
|
has_delivered: boolean;
|
|
1207
1209
|
started_rendering_at_millis: number;
|
|
1208
1210
|
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,6 +1218,8 @@ 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;
|
|
1221
1223
|
updated_at_millis: number;
|
|
1222
1224
|
tsx_source: string;
|
|
1223
1225
|
theme_id: string | null;
|
|
@@ -1254,8 +1256,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1254
1256
|
has_delivered: boolean;
|
|
1255
1257
|
started_rendering_at_millis: number;
|
|
1256
1258
|
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,6 +1267,8 @@ 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;
|
|
1270
1272
|
updated_at_millis: number;
|
|
1271
1273
|
tsx_source: string;
|
|
1272
1274
|
theme_id: string | null;
|
|
@@ -1303,8 +1305,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1303
1305
|
has_delivered: boolean;
|
|
1304
1306
|
started_rendering_at_millis: number;
|
|
1305
1307
|
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,6 +1317,8 @@ 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;
|
|
1320
1322
|
updated_at_millis: number;
|
|
1321
1323
|
tsx_source: string;
|
|
1322
1324
|
theme_id: string | null;
|
|
@@ -1353,8 +1355,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1353
1355
|
has_delivered: boolean;
|
|
1354
1356
|
started_rendering_at_millis: number;
|
|
1355
1357
|
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,6 +1367,8 @@ 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;
|
|
1370
1372
|
updated_at_millis: number;
|
|
1371
1373
|
tsx_source: string;
|
|
1372
1374
|
theme_id: string | null;
|
|
@@ -1403,8 +1405,6 @@ declare const emailOutboxCrud: ______crud0.CrudSchemaFromOptions<{
|
|
|
1403
1405
|
has_delivered: boolean;
|
|
1404
1406
|
started_rendering_at_millis: number;
|
|
1405
1407
|
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;
|