@trii/types 2.10.558 → 2.10.560

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.
@@ -17,7 +17,7 @@ export interface Template {
17
17
  varsFooter?: TemplateVar[];
18
18
  varsButtons?: TemplateVarButton[];
19
19
  status: TemplateStatus;
20
- rejectedReason: boolean;
20
+ rejectedReason: string;
21
21
  timestamp?: Date;
22
22
  /**lista de id de grupos */
23
23
  allowGroups?: string[];
@@ -47,7 +47,6 @@ export interface ScheduledReport {
47
47
  lastSent?: Date | null;
48
48
  lastSentSuccess: boolean;
49
49
  lastSentError?: string | null;
50
- nextSent: Date;
51
50
  finished: boolean;
52
51
  summary: string;
53
52
  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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.558",
3
+ "version": "2.10.560",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",