@cellaware/utils 8.3.13 → 8.3.15
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/chatwms/report.d.ts +5 -3
- package/package.json +1 -1
package/dist/chatwms/report.d.ts
CHANGED
|
@@ -35,6 +35,10 @@ export declare function initReport(): Report;
|
|
|
35
35
|
export interface InstanceReport extends Report {
|
|
36
36
|
lines: ReportLine[];
|
|
37
37
|
}
|
|
38
|
+
export interface InstanceReportWithSubscriptions extends InstanceReport {
|
|
39
|
+
popups: Set<string>;
|
|
40
|
+
emails: Set<string>;
|
|
41
|
+
}
|
|
38
42
|
export interface LineReportParameter {
|
|
39
43
|
sequence: number;
|
|
40
44
|
parameterName: string;
|
|
@@ -94,7 +98,5 @@ export interface ReportSchedule {
|
|
|
94
98
|
export declare function initReportSchedule(): ReportSchedule;
|
|
95
99
|
export interface InstanceReportSchedule {
|
|
96
100
|
cronExpression: string;
|
|
97
|
-
reports:
|
|
98
|
-
popups: Set<string>;
|
|
99
|
-
emails: Set<string>;
|
|
101
|
+
reports: InstanceReportWithSubscriptions[];
|
|
100
102
|
}
|