@cellaware/utils 8.11.13 → 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 +6 -0
- package/package.json +1 -1
package/dist/chatwms/report.d.ts
CHANGED
|
@@ -103,6 +103,9 @@ 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
|
+
*/
|
|
106
109
|
lineIds?: string[];
|
|
107
110
|
clientId: string;
|
|
108
111
|
userId: string;
|
|
@@ -116,5 +119,8 @@ export interface InstanceReportSchedule {
|
|
|
116
119
|
integrations: Set<SubscriptionIntegration>;
|
|
117
120
|
excel: boolean;
|
|
118
121
|
parameterValues: ReportParameterValue[];
|
|
122
|
+
/**
|
|
123
|
+
* ***Important:** An empty array indicates that all lines are selected.
|
|
124
|
+
*/
|
|
119
125
|
lineIds: string[];
|
|
120
126
|
}
|