@cellaware/utils 8.11.12 → 8.11.14
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
|
@@ -103,6 +103,10 @@ export interface ReportSchedule {
|
|
|
103
103
|
integrations?: string[];
|
|
104
104
|
excel?: boolean;
|
|
105
105
|
parameterValues?: ReportParameterValue[];
|
|
106
|
+
/**
|
|
107
|
+
* **Important:** An undefined/empty array indicates that all lines are selected.
|
|
108
|
+
*/
|
|
109
|
+
lineIds?: string[];
|
|
106
110
|
clientId: string;
|
|
107
111
|
userId: string;
|
|
108
112
|
userDetails: string;
|
|
@@ -115,4 +119,8 @@ export interface InstanceReportSchedule {
|
|
|
115
119
|
integrations: Set<SubscriptionIntegration>;
|
|
116
120
|
excel: boolean;
|
|
117
121
|
parameterValues: ReportParameterValue[];
|
|
122
|
+
/**
|
|
123
|
+
* ***Important:** An empty array indicates that all lines are selected.
|
|
124
|
+
*/
|
|
125
|
+
lineIds: string[];
|
|
118
126
|
}
|
package/dist/chatwms/report.js
CHANGED