@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.
@@ -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
  }
@@ -47,6 +47,7 @@ export function initReportSchedule() {
47
47
  integrations: [],
48
48
  excel: false,
49
49
  parameterValues: [],
50
+ lineIds: [],
50
51
  clientId: '',
51
52
  userId: '',
52
53
  userDetails: ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.11.12",
3
+ "version": "8.11.14",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",