@cellaware/utils 9.0.4 → 9.0.6
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.
|
@@ -54,6 +54,8 @@ export interface BIDataSource {
|
|
|
54
54
|
dataSourceRoute: string;
|
|
55
55
|
contextName: DataContext;
|
|
56
56
|
archive?: boolean;
|
|
57
|
+
/** Indicates if data is pre-loaded rather than loaded dynamically via a Data Engine. */
|
|
58
|
+
preload?: boolean;
|
|
57
59
|
description: string;
|
|
58
60
|
/** **Important:** will always be `public` for now -- we may allow `private` in the future. */
|
|
59
61
|
visibility: string;
|
|
@@ -92,6 +94,7 @@ export interface BIDataSourceColumn {
|
|
|
92
94
|
relationship?: BIDataSourceColumnRelationship;
|
|
93
95
|
/** Important: a calendar represents the semantics of a **particular** date -- each date field should have its own calendar. */
|
|
94
96
|
calendar?: BIDataSourceColumnCalendar;
|
|
97
|
+
hidden?: boolean;
|
|
95
98
|
}
|
|
96
99
|
/** https://www.ag-grid.com/studio/angular/expressions/#api */
|
|
97
100
|
export interface BIDataSourceExpression {
|
package/dist/chatwms/cosmos.js
CHANGED
|
@@ -76,6 +76,18 @@ const COSMOS_TABLES = [
|
|
|
76
76
|
table_name: 'alerts',
|
|
77
77
|
table_description: 'Alerts'
|
|
78
78
|
},
|
|
79
|
+
{
|
|
80
|
+
table_name: 'bi_canvases',
|
|
81
|
+
table_description: 'BI Canvases'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
table_name: 'bi_canvas_usage',
|
|
85
|
+
table_description: 'BI Canvas Usage'
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
table_name: 'bi_data_sources',
|
|
89
|
+
table_description: 'BI Data Sources'
|
|
90
|
+
},
|
|
79
91
|
{
|
|
80
92
|
table_name: 'client_configs',
|
|
81
93
|
table_description: 'Client Configurations'
|
|
@@ -120,6 +132,10 @@ const COSMOS_TABLES = [
|
|
|
120
132
|
table_name: 'dashboards',
|
|
121
133
|
table_description: 'Dashboards'
|
|
122
134
|
},
|
|
135
|
+
{
|
|
136
|
+
table_name: 'data_locks',
|
|
137
|
+
table_description: 'Data Locks'
|
|
138
|
+
},
|
|
123
139
|
{
|
|
124
140
|
table_name: 'errors_temp',
|
|
125
141
|
table_description: 'Temporary error collection'
|