@cellaware/utils 8.3.7 → 8.3.9
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
CHANGED
|
@@ -32,6 +32,10 @@ export interface Report {
|
|
|
32
32
|
customerLevel?: boolean;
|
|
33
33
|
}
|
|
34
34
|
export declare function initReport(): Report;
|
|
35
|
+
export interface InstanceReport extends Report {
|
|
36
|
+
popupUserIds: string[];
|
|
37
|
+
emails: string[];
|
|
38
|
+
}
|
|
35
39
|
export interface LineReportParameter {
|
|
36
40
|
sequence: number;
|
|
37
41
|
parameterName: string;
|
|
@@ -80,6 +84,7 @@ export interface ReportUsage {
|
|
|
80
84
|
export interface ReportSchedule {
|
|
81
85
|
scheduleId: string;
|
|
82
86
|
reportId: string;
|
|
87
|
+
enabled: boolean;
|
|
83
88
|
cronExpression: string;
|
|
84
89
|
popup?: boolean;
|
|
85
90
|
emails?: string[];
|
|
@@ -87,3 +92,7 @@ export interface ReportSchedule {
|
|
|
87
92
|
userId: string;
|
|
88
93
|
}
|
|
89
94
|
export declare function initReportSchedule(): ReportSchedule;
|
|
95
|
+
export interface InstanceReportSchedule extends Report {
|
|
96
|
+
cronExpression: string;
|
|
97
|
+
reports: InstanceReport[];
|
|
98
|
+
}
|
package/dist/chatwms/report.js
CHANGED