@cellaware/utils 8.19.0 → 8.20.1

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.
@@ -30,6 +30,7 @@ export interface Alert {
30
30
  visibility: string;
31
31
  readonly: boolean;
32
32
  folder: string;
33
+ tags: string[];
33
34
  strategy: string;
34
35
  contentInfo: AlertContentInfo;
35
36
  conditionInfo: DatagridCondition;
@@ -30,6 +30,7 @@ export function initAlert() {
30
30
  visibility: ALERT_VISIBILITY_PRIVATE,
31
31
  readonly: false,
32
32
  folder: '',
33
+ tags: [],
33
34
  strategy: ALERT_STRATEGY_ONCE,
34
35
  contentInfo: initAlertContentInfo(),
35
36
  conditionInfo: initDatagridCondition(),
@@ -9,6 +9,7 @@ export interface BICanvas {
9
9
  visibility: string;
10
10
  readonly: boolean;
11
11
  folder: string;
12
+ tags: string[];
12
13
  dataSourceName: string;
13
14
  state: BICanvasState;
14
15
  clientId: string;
@@ -9,6 +9,7 @@ export function initBICanvas() {
9
9
  visibility: BI_STUDIO_VISIBILITY_PRIVATE,
10
10
  readonly: false,
11
11
  folder: '',
12
+ tags: [],
12
13
  dataSourceName: '',
13
14
  state: initBICanvasState(),
14
15
  clientId: '',
@@ -24,6 +24,7 @@ export interface Dashboard {
24
24
  filters: DashboardFilter[];
25
25
  parameters: DashboardParameter[];
26
26
  folder: string;
27
+ tags: string[];
27
28
  tv: boolean;
28
29
  clientId: string;
29
30
  userId: string;
@@ -11,6 +11,7 @@ export function initDashboard() {
11
11
  filters: [],
12
12
  parameters: [],
13
13
  folder: '',
14
+ tags: [],
14
15
  tv: false,
15
16
  clientId: '',
16
17
  userId: ''
@@ -1391,7 +1391,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
1391
1391
  rowIdx++;
1392
1392
  });
1393
1393
  if (!!condition) {
1394
- rows = evaluatePivotDatagridCondition(rows, condition, mappedDisplayColumnNames);
1394
+ adjRows = evaluatePivotDatagridCondition(adjRows, condition, mappedDisplayColumnNames);
1395
1395
  }
1396
1396
  }
1397
1397
  else {
@@ -1451,7 +1451,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
1451
1451
  rowIdx++;
1452
1452
  });
1453
1453
  if (!!condition) {
1454
- adjRows = evaluateDatagridCondition(rows, condition);
1454
+ adjRows = evaluateDatagridCondition(adjRows, condition);
1455
1455
  }
1456
1456
  }
1457
1457
  return {
@@ -28,6 +28,7 @@ export interface Report {
28
28
  landscape?: boolean;
29
29
  parameters: ReportParameter[];
30
30
  folder: string;
31
+ tags: string[];
31
32
  brief: string;
32
33
  email?: {
33
34
  subject: string;
@@ -18,6 +18,7 @@ export function initReport() {
18
18
  readonly: false,
19
19
  parameters: [],
20
20
  folder: '',
21
+ tags: [],
21
22
  brief: '',
22
23
  clientId: '',
23
24
  userId: ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.19.0",
3
+ "version": "8.20.1",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",