@trii/types 2.10.557 → 2.10.559
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.
|
@@ -44,6 +44,10 @@ export interface ScheduledReport {
|
|
|
44
44
|
* emails separated by semicolon ;
|
|
45
45
|
*/
|
|
46
46
|
sendTo: string;
|
|
47
|
+
lastSent?: Date | null;
|
|
48
|
+
lastSentSuccess: boolean;
|
|
49
|
+
lastSentError?: string | null;
|
|
50
|
+
nextSent: Date;
|
|
47
51
|
finished: boolean;
|
|
48
52
|
summary: string;
|
|
49
53
|
nextSend: Date;
|
|
@@ -10,3 +10,11 @@ export interface ReportAIResult {
|
|
|
10
10
|
ownerId: string;
|
|
11
11
|
createdAt: Date;
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* Elemento asociado a un reporte
|
|
15
|
+
* para mostrar en listas de reportes, a la hora de visualizar reportes.
|
|
16
|
+
*/
|
|
17
|
+
export interface ReportAIItem {
|
|
18
|
+
title: string;
|
|
19
|
+
key: string;
|
|
20
|
+
}
|