@cellaware/utils 9.0.5 → 9.0.7

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.
@@ -46,6 +46,8 @@ export interface BIDataSourceExternal {
46
46
  expressions: any[];
47
47
  relationships: any[];
48
48
  calendars: any[];
49
+ /** Indicates if data is pre-loaded rather than loaded dynamically via a Data Engine. */
50
+ preload: boolean;
49
51
  }
50
52
  export interface BIDataSource {
51
53
  dataSourceId: string;
@@ -54,6 +56,8 @@ export interface BIDataSource {
54
56
  dataSourceRoute: string;
55
57
  contextName: DataContext;
56
58
  archive?: boolean;
59
+ /** Indicates if data is pre-loaded rather than loaded dynamically via a Data Engine. */
60
+ preload?: boolean;
57
61
  description: string;
58
62
  /** **Important:** will always be `public` for now -- we may allow `private` in the future. */
59
63
  visibility: string;
@@ -92,6 +96,7 @@ export interface BIDataSourceColumn {
92
96
  relationship?: BIDataSourceColumnRelationship;
93
97
  /** Important: a calendar represents the semantics of a **particular** date -- each date field should have its own calendar. */
94
98
  calendar?: BIDataSourceColumnCalendar;
99
+ hidden?: boolean;
95
100
  }
96
101
  /** https://www.ag-grid.com/studio/angular/expressions/#api */
97
102
  export interface BIDataSourceExpression {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "9.0.5",
3
+ "version": "9.0.7",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",