@cellaware/utils 8.3.15 → 8.3.17
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 -5
- package/package.json +1 -1
package/dist/chatwms/report.d.ts
CHANGED
|
@@ -32,12 +32,11 @@ export interface Report {
|
|
|
32
32
|
customerLevel?: boolean;
|
|
33
33
|
}
|
|
34
34
|
export declare function initReport(): Report;
|
|
35
|
-
export interface
|
|
35
|
+
export interface ReportWithLines extends Report {
|
|
36
36
|
lines: ReportLine[];
|
|
37
37
|
}
|
|
38
|
-
export interface
|
|
39
|
-
|
|
40
|
-
emails: Set<string>;
|
|
38
|
+
export interface InstanceReport extends ReportWithLines {
|
|
39
|
+
schedules: InstanceReportSchedule[];
|
|
41
40
|
}
|
|
42
41
|
export interface LineReportParameter {
|
|
43
42
|
sequence: number;
|
|
@@ -98,5 +97,6 @@ export interface ReportSchedule {
|
|
|
98
97
|
export declare function initReportSchedule(): ReportSchedule;
|
|
99
98
|
export interface InstanceReportSchedule {
|
|
100
99
|
cronExpression: string;
|
|
101
|
-
|
|
100
|
+
popups: Set<string>;
|
|
101
|
+
emails: Set<string>;
|
|
102
102
|
}
|