@cellaware/utils 9.1.2 → 9.2.0

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.
@@ -68,6 +68,7 @@ export interface BIDataSource {
68
68
  tags: Tag[];
69
69
  views: BIDataSourceView[];
70
70
  relationships: BIDataSourceRelationship[];
71
+ calculations: BIDataSourceExpression[];
71
72
  measures: BIDataSourceExpression[];
72
73
  clientId: string;
73
74
  userId: string;
@@ -113,4 +114,5 @@ export interface BIDataSourceExpression {
113
114
  comment: string;
114
115
  /** https://www.ag-grid.com/studio/angular/expressions/#function-expression-operators */
115
116
  expression: any;
117
+ isMeasure?: boolean;
116
118
  }
@@ -39,6 +39,7 @@ export function initBIDataSource() {
39
39
  tags: [],
40
40
  views: [],
41
41
  relationships: [],
42
+ calculations: [],
42
43
  measures: [],
43
44
  clientId: '',
44
45
  userId: ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "9.1.2",
3
+ "version": "9.2.0",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",