@hexclave/shared 1.0.47 → 1.0.48

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 (57) hide show
  1. package/dist/{admin-interface-DH4uLcZ3.d.ts → admin-interface-blbgnrRn.d.ts} +6 -6
  2. package/dist/{admin-interface-DH4uLcZ3.d.ts.map → admin-interface-blbgnrRn.d.ts.map} +1 -1
  3. package/dist/{admin-metrics-pphx-0AE.d.ts → admin-metrics-bsOkw4YQ.d.ts} +7 -7
  4. package/dist/{admin-metrics-pphx-0AE.d.ts.map → admin-metrics-bsOkw4YQ.d.ts.map} +1 -1
  5. package/dist/{client-interface-BmHWUJhv.d.ts → client-interface-BQz4jNAC.d.ts} +5 -5
  6. package/dist/{client-interface-BmHWUJhv.d.ts.map → client-interface-BQz4jNAC.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-DoxRUJop.d.ts → email-outbox-B1wmVPRG.d.ts} +43 -43
  12. package/dist/{email-outbox-DoxRUJop.d.ts.map → email-outbox-B1wmVPRG.d.ts.map} +1 -1
  13. package/dist/esm/config/schema.d.ts +44 -44
  14. package/dist/esm/interface/admin-interface.js +1 -1
  15. package/dist/esm/interface/admin-metrics.d.ts +6 -6
  16. package/dist/esm/interface/client-interface.js +1 -1
  17. package/dist/esm/interface/conversations.d.ts +34 -34
  18. package/dist/esm/interface/crud/current-user.d.ts +2 -2
  19. package/dist/esm/interface/crud/email-outbox.d.ts +42 -42
  20. package/dist/esm/interface/crud/invoices.d.ts +2 -2
  21. package/dist/esm/interface/crud/projects.d.ts +43 -43
  22. package/dist/esm/interface/crud/team-member-profiles.d.ts +10 -10
  23. package/dist/esm/interface/crud/users.d.ts +10 -10
  24. package/dist/esm/interface/server-interface.js +1 -1
  25. package/dist/esm/interface/webhooks.d.ts +2 -2
  26. package/dist/helpers/production-mode.d.ts +1 -1
  27. package/dist/index.d.ts +3 -3
  28. package/dist/interface/admin-interface.d.ts +1 -1
  29. package/dist/interface/admin-interface.js +1 -1
  30. package/dist/interface/admin-metrics.d.ts +1 -1
  31. package/dist/interface/client-interface.d.ts +1 -1
  32. package/dist/interface/client-interface.js +1 -1
  33. package/dist/interface/conversations.d.ts +34 -34
  34. package/dist/interface/crud/current-user.d.ts +1 -1
  35. package/dist/interface/crud/email-outbox.d.ts +1 -1
  36. package/dist/interface/crud/invoices.d.ts +1 -1
  37. package/dist/interface/crud/projects.d.ts +1 -1
  38. package/dist/interface/crud/team-member-profiles.d.ts +1 -1
  39. package/dist/interface/crud/users.d.ts +1 -1
  40. package/dist/interface/server-interface.d.ts +1 -1
  41. package/dist/interface/server-interface.js +1 -1
  42. package/dist/interface/webhooks.d.ts +1 -1
  43. package/dist/{invoices-U65KzAZX.d.ts → invoices-CHo9YKbI.d.ts} +3 -3
  44. package/dist/{invoices-U65KzAZX.d.ts.map → invoices-CHo9YKbI.d.ts.map} +1 -1
  45. package/dist/{projects-dH9I0bcX.d.ts → projects-CFTNXRfG.d.ts} +44 -44
  46. package/dist/{projects-dH9I0bcX.d.ts.map → projects-CFTNXRfG.d.ts.map} +1 -1
  47. package/dist/{schema-BSb4tzx3.d.ts → schema-Daq0b_sf.d.ts} +45 -45
  48. package/dist/{schema-BSb4tzx3.d.ts.map → schema-Daq0b_sf.d.ts.map} +1 -1
  49. package/dist/{server-interface-CxorzgTW.d.ts → server-interface-BjY-eS4Q.d.ts} +5 -5
  50. package/dist/{server-interface-CxorzgTW.d.ts.map → server-interface-BjY-eS4Q.d.ts.map} +1 -1
  51. package/dist/{team-member-profiles-uTluO8XI.d.ts → team-member-profiles-BoDEqx-0.d.ts} +11 -11
  52. package/dist/{team-member-profiles-uTluO8XI.d.ts.map → team-member-profiles-BoDEqx-0.d.ts.map} +1 -1
  53. package/dist/{users-CmBBuF00.d.ts → users-DHNRwoSz.d.ts} +12 -12
  54. package/dist/{users-CmBBuF00.d.ts.map → users-DHNRwoSz.d.ts.map} +1 -1
  55. package/dist/{webhooks-ByXrdSOx.d.ts → webhooks-8Ts1Clcb.d.ts} +3 -3
  56. package/dist/{webhooks-ByXrdSOx.d.ts.map → webhooks-8Ts1Clcb.d.ts.map} +1 -1
  57. package/package.json +1 -1
@@ -160,9 +160,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
160
160
  } | {
161
161
  status: "scheduled";
162
162
  id: string;
163
+ subject: string;
164
+ created_at_millis: number;
163
165
  html: string | null;
164
166
  text: string | null;
165
- created_at_millis: number;
166
167
  updated_at_millis: number;
167
168
  tsx_source: string;
168
169
  theme_id: string | null;
@@ -199,16 +200,16 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
199
200
  has_delivered: boolean;
200
201
  started_rendering_at_millis: number;
201
202
  rendered_at_millis: number;
202
- subject: string;
203
203
  is_transactional: boolean;
204
204
  is_high_priority: boolean;
205
205
  notification_category_id: string | null;
206
206
  } | {
207
207
  status: "queued";
208
208
  id: string;
209
+ subject: string;
210
+ created_at_millis: number;
209
211
  html: string | null;
210
212
  text: string | null;
211
- created_at_millis: number;
212
213
  updated_at_millis: number;
213
214
  tsx_source: string;
214
215
  theme_id: string | null;
@@ -245,16 +246,16 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
245
246
  has_delivered: boolean;
246
247
  started_rendering_at_millis: number;
247
248
  rendered_at_millis: number;
248
- subject: string;
249
249
  is_transactional: boolean;
250
250
  is_high_priority: boolean;
251
251
  notification_category_id: string | null;
252
252
  } | {
253
253
  status: "sending";
254
254
  id: string;
255
+ subject: string;
256
+ created_at_millis: number;
255
257
  html: string | null;
256
258
  text: string | null;
257
- created_at_millis: number;
258
259
  updated_at_millis: number;
259
260
  tsx_source: string;
260
261
  theme_id: string | null;
@@ -291,7 +292,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
291
292
  has_delivered: boolean;
292
293
  started_rendering_at_millis: number;
293
294
  rendered_at_millis: number;
294
- subject: string;
295
295
  is_transactional: boolean;
296
296
  is_high_priority: boolean;
297
297
  notification_category_id: string | null;
@@ -299,9 +299,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
299
299
  } | {
300
300
  status: "server-error";
301
301
  id: string;
302
+ subject: string;
303
+ created_at_millis: number;
302
304
  html: string | null;
303
305
  text: string | null;
304
- created_at_millis: number;
305
306
  updated_at_millis: number;
306
307
  tsx_source: string;
307
308
  theme_id: string | null;
@@ -338,7 +339,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
338
339
  has_delivered: boolean;
339
340
  started_rendering_at_millis: number;
340
341
  rendered_at_millis: number;
341
- subject: string;
342
342
  is_transactional: boolean;
343
343
  is_high_priority: boolean;
344
344
  notification_category_id: string | null;
@@ -346,11 +346,11 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
346
346
  error_at_millis: number;
347
347
  server_error: string;
348
348
  } | {
349
+ subject?: string | undefined;
349
350
  html?: string | null | undefined;
350
351
  text?: string | null | undefined;
351
352
  started_rendering_at_millis?: number | undefined;
352
353
  rendered_at_millis?: number | undefined;
353
- subject?: string | undefined;
354
354
  is_transactional?: boolean | undefined;
355
355
  is_high_priority?: boolean | undefined;
356
356
  notification_category_id?: string | null | undefined;
@@ -398,9 +398,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
398
398
  } | {
399
399
  status: "bounced";
400
400
  id: string;
401
+ subject: string;
402
+ created_at_millis: number;
401
403
  html: string | null;
402
404
  text: string | null;
403
- created_at_millis: number;
404
405
  updated_at_millis: number;
405
406
  tsx_source: string;
406
407
  theme_id: string | null;
@@ -437,7 +438,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
437
438
  has_delivered: boolean;
438
439
  started_rendering_at_millis: number;
439
440
  rendered_at_millis: number;
440
- subject: string;
441
441
  is_transactional: boolean;
442
442
  is_high_priority: boolean;
443
443
  notification_category_id: string | null;
@@ -446,9 +446,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
446
446
  } | {
447
447
  status: "delivery-delayed";
448
448
  id: string;
449
+ subject: string;
450
+ created_at_millis: number;
449
451
  html: string | null;
450
452
  text: string | null;
451
- created_at_millis: number;
452
453
  updated_at_millis: number;
453
454
  tsx_source: string;
454
455
  theme_id: string | null;
@@ -485,7 +486,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
485
486
  has_delivered: boolean;
486
487
  started_rendering_at_millis: number;
487
488
  rendered_at_millis: number;
488
- subject: string;
489
489
  is_transactional: boolean;
490
490
  is_high_priority: boolean;
491
491
  notification_category_id: string | null;
@@ -494,9 +494,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
494
494
  } | {
495
495
  status: "sent";
496
496
  id: string;
497
+ subject: string;
498
+ created_at_millis: number;
497
499
  html: string | null;
498
500
  text: string | null;
499
- created_at_millis: number;
500
501
  updated_at_millis: number;
501
502
  tsx_source: string;
502
503
  theme_id: string | null;
@@ -533,7 +534,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
533
534
  has_delivered: boolean;
534
535
  started_rendering_at_millis: number;
535
536
  rendered_at_millis: number;
536
- subject: string;
537
537
  is_transactional: boolean;
538
538
  is_high_priority: boolean;
539
539
  notification_category_id: string | null;
@@ -543,9 +543,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
543
543
  } | {
544
544
  status: "opened";
545
545
  id: string;
546
+ subject: string;
547
+ created_at_millis: number;
546
548
  html: string | null;
547
549
  text: string | null;
548
- created_at_millis: number;
549
550
  updated_at_millis: number;
550
551
  tsx_source: string;
551
552
  theme_id: string | null;
@@ -582,7 +583,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
582
583
  has_delivered: boolean;
583
584
  started_rendering_at_millis: number;
584
585
  rendered_at_millis: number;
585
- subject: string;
586
586
  is_transactional: boolean;
587
587
  is_high_priority: boolean;
588
588
  notification_category_id: string | null;
@@ -593,9 +593,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
593
593
  } | {
594
594
  status: "clicked";
595
595
  id: string;
596
+ subject: string;
597
+ created_at_millis: number;
596
598
  html: string | null;
597
599
  text: string | null;
598
- created_at_millis: number;
599
600
  updated_at_millis: number;
600
601
  tsx_source: string;
601
602
  theme_id: string | null;
@@ -632,7 +633,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
632
633
  has_delivered: boolean;
633
634
  started_rendering_at_millis: number;
634
635
  rendered_at_millis: number;
635
- subject: string;
636
636
  is_transactional: boolean;
637
637
  is_high_priority: boolean;
638
638
  notification_category_id: string | null;
@@ -643,9 +643,10 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
643
643
  } | {
644
644
  status: "marked-as-spam";
645
645
  id: string;
646
+ subject: string;
647
+ created_at_millis: number;
646
648
  html: string | null;
647
649
  text: string | null;
648
- created_at_millis: number;
649
650
  updated_at_millis: number;
650
651
  tsx_source: string;
651
652
  theme_id: string | null;
@@ -682,7 +683,6 @@ declare const emailOutboxReadSchema: import("yup").MixedSchema<{
682
683
  has_delivered: boolean;
683
684
  started_rendering_at_millis: number;
684
685
  rendered_at_millis: number;
685
- subject: string;
686
686
  is_transactional: boolean;
687
687
  is_high_priority: boolean;
688
688
  notification_category_id: string | null;
@@ -880,9 +880,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
880
880
  } | {
881
881
  status: "scheduled";
882
882
  id: string;
883
+ subject: string;
884
+ created_at_millis: number;
883
885
  html: string | null;
884
886
  text: string | null;
885
- created_at_millis: number;
886
887
  updated_at_millis: number;
887
888
  tsx_source: string;
888
889
  theme_id: string | null;
@@ -919,16 +920,16 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
919
920
  has_delivered: boolean;
920
921
  started_rendering_at_millis: number;
921
922
  rendered_at_millis: number;
922
- subject: string;
923
923
  is_transactional: boolean;
924
924
  is_high_priority: boolean;
925
925
  notification_category_id: string | null;
926
926
  } | {
927
927
  status: "queued";
928
928
  id: string;
929
+ subject: string;
930
+ created_at_millis: number;
929
931
  html: string | null;
930
932
  text: string | null;
931
- created_at_millis: number;
932
933
  updated_at_millis: number;
933
934
  tsx_source: string;
934
935
  theme_id: string | null;
@@ -965,16 +966,16 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
965
966
  has_delivered: boolean;
966
967
  started_rendering_at_millis: number;
967
968
  rendered_at_millis: number;
968
- subject: string;
969
969
  is_transactional: boolean;
970
970
  is_high_priority: boolean;
971
971
  notification_category_id: string | null;
972
972
  } | {
973
973
  status: "sending";
974
974
  id: string;
975
+ subject: string;
976
+ created_at_millis: number;
975
977
  html: string | null;
976
978
  text: string | null;
977
- created_at_millis: number;
978
979
  updated_at_millis: number;
979
980
  tsx_source: string;
980
981
  theme_id: string | null;
@@ -1011,7 +1012,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1011
1012
  has_delivered: boolean;
1012
1013
  started_rendering_at_millis: number;
1013
1014
  rendered_at_millis: number;
1014
- subject: string;
1015
1015
  is_transactional: boolean;
1016
1016
  is_high_priority: boolean;
1017
1017
  notification_category_id: string | null;
@@ -1019,9 +1019,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1019
1019
  } | {
1020
1020
  status: "server-error";
1021
1021
  id: string;
1022
+ subject: string;
1023
+ created_at_millis: number;
1022
1024
  html: string | null;
1023
1025
  text: string | null;
1024
- created_at_millis: number;
1025
1026
  updated_at_millis: number;
1026
1027
  tsx_source: string;
1027
1028
  theme_id: string | null;
@@ -1058,7 +1059,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1058
1059
  has_delivered: boolean;
1059
1060
  started_rendering_at_millis: number;
1060
1061
  rendered_at_millis: number;
1061
- subject: string;
1062
1062
  is_transactional: boolean;
1063
1063
  is_high_priority: boolean;
1064
1064
  notification_category_id: string | null;
@@ -1066,11 +1066,11 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1066
1066
  error_at_millis: number;
1067
1067
  server_error: string;
1068
1068
  } | {
1069
+ subject?: string | undefined;
1069
1070
  html?: string | null | undefined;
1070
1071
  text?: string | null | undefined;
1071
1072
  started_rendering_at_millis?: number | undefined;
1072
1073
  rendered_at_millis?: number | undefined;
1073
- subject?: string | undefined;
1074
1074
  is_transactional?: boolean | undefined;
1075
1075
  is_high_priority?: boolean | undefined;
1076
1076
  notification_category_id?: string | null | undefined;
@@ -1118,9 +1118,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1118
1118
  } | {
1119
1119
  status: "bounced";
1120
1120
  id: string;
1121
+ subject: string;
1122
+ created_at_millis: number;
1121
1123
  html: string | null;
1122
1124
  text: string | null;
1123
- created_at_millis: number;
1124
1125
  updated_at_millis: number;
1125
1126
  tsx_source: string;
1126
1127
  theme_id: string | null;
@@ -1157,7 +1158,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1157
1158
  has_delivered: boolean;
1158
1159
  started_rendering_at_millis: number;
1159
1160
  rendered_at_millis: number;
1160
- subject: string;
1161
1161
  is_transactional: boolean;
1162
1162
  is_high_priority: boolean;
1163
1163
  notification_category_id: string | null;
@@ -1166,9 +1166,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1166
1166
  } | {
1167
1167
  status: "delivery-delayed";
1168
1168
  id: string;
1169
+ subject: string;
1170
+ created_at_millis: number;
1169
1171
  html: string | null;
1170
1172
  text: string | null;
1171
- created_at_millis: number;
1172
1173
  updated_at_millis: number;
1173
1174
  tsx_source: string;
1174
1175
  theme_id: string | null;
@@ -1205,7 +1206,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1205
1206
  has_delivered: boolean;
1206
1207
  started_rendering_at_millis: number;
1207
1208
  rendered_at_millis: number;
1208
- subject: string;
1209
1209
  is_transactional: boolean;
1210
1210
  is_high_priority: boolean;
1211
1211
  notification_category_id: string | null;
@@ -1214,9 +1214,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1214
1214
  } | {
1215
1215
  status: "sent";
1216
1216
  id: string;
1217
+ subject: string;
1218
+ created_at_millis: number;
1217
1219
  html: string | null;
1218
1220
  text: string | null;
1219
- created_at_millis: number;
1220
1221
  updated_at_millis: number;
1221
1222
  tsx_source: string;
1222
1223
  theme_id: string | null;
@@ -1253,7 +1254,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1253
1254
  has_delivered: boolean;
1254
1255
  started_rendering_at_millis: number;
1255
1256
  rendered_at_millis: number;
1256
- subject: string;
1257
1257
  is_transactional: boolean;
1258
1258
  is_high_priority: boolean;
1259
1259
  notification_category_id: string | null;
@@ -1263,9 +1263,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1263
1263
  } | {
1264
1264
  status: "opened";
1265
1265
  id: string;
1266
+ subject: string;
1267
+ created_at_millis: number;
1266
1268
  html: string | null;
1267
1269
  text: string | null;
1268
- created_at_millis: number;
1269
1270
  updated_at_millis: number;
1270
1271
  tsx_source: string;
1271
1272
  theme_id: string | null;
@@ -1302,7 +1303,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1302
1303
  has_delivered: boolean;
1303
1304
  started_rendering_at_millis: number;
1304
1305
  rendered_at_millis: number;
1305
- subject: string;
1306
1306
  is_transactional: boolean;
1307
1307
  is_high_priority: boolean;
1308
1308
  notification_category_id: string | null;
@@ -1313,9 +1313,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1313
1313
  } | {
1314
1314
  status: "clicked";
1315
1315
  id: string;
1316
+ subject: string;
1317
+ created_at_millis: number;
1316
1318
  html: string | null;
1317
1319
  text: string | null;
1318
- created_at_millis: number;
1319
1320
  updated_at_millis: number;
1320
1321
  tsx_source: string;
1321
1322
  theme_id: string | null;
@@ -1352,7 +1353,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1352
1353
  has_delivered: boolean;
1353
1354
  started_rendering_at_millis: number;
1354
1355
  rendered_at_millis: number;
1355
- subject: string;
1356
1356
  is_transactional: boolean;
1357
1357
  is_high_priority: boolean;
1358
1358
  notification_category_id: string | null;
@@ -1363,9 +1363,10 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1363
1363
  } | {
1364
1364
  status: "marked-as-spam";
1365
1365
  id: string;
1366
+ subject: string;
1367
+ created_at_millis: number;
1366
1368
  html: string | null;
1367
1369
  text: string | null;
1368
- created_at_millis: number;
1369
1370
  updated_at_millis: number;
1370
1371
  tsx_source: string;
1371
1372
  theme_id: string | null;
@@ -1402,7 +1403,6 @@ declare const emailOutboxCrud: CrudSchemaFromOptions<{
1402
1403
  has_delivered: boolean;
1403
1404
  started_rendering_at_millis: number;
1404
1405
  rendered_at_millis: number;
1405
- subject: string;
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-DoxRUJop.d.ts.map
1464
+ //# sourceMappingURL=email-outbox-B1wmVPRG.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"email-outbox-DoxRUJop.d.ts","names":[],"sources":["../src/interface/crud/email-outbox.ts"],"mappings":";;;cAiNa,qBAAA,gBAAqB,WAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmBrB,uBAAA,gBAAuB,YAAA;;;;;;;;;;;;;;aASxB,MAAA;;;;;;;;;;;;;;;cAEC,eAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAsBD,eAAA,GAAkB,UAAU,QAAQ,eAAA"}
1
+ {"version":3,"file":"email-outbox-B1wmVPRG.d.ts","names":[],"sources":["../src/interface/crud/email-outbox.ts"],"mappings":";;;cAiNa,qBAAA,gBAAqB,WAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmBrB,uBAAA,gBAAuB,YAAA;;;;;;;;;;;;;;aASxB,MAAA;;;;;;;;;;;;;;;cAEC,eAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAsBD,eAAA,GAAkB,UAAU,QAAQ,eAAA"}