@cellaware/utils 8.13.1 → 8.13.2

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.
@@ -313,6 +313,7 @@ export function loadCosmosDeveloperCache(userId) {
313
313
  contextName: COSMOS_CONTEXT_NAME,
314
314
  variables: createCosmosVariables(userId),
315
315
  tables: COSMOS_TABLES,
316
+ views: [],
316
317
  columns: [],
317
318
  functions: COSMOS_FUNCTIONS,
318
319
  tableMappings: [],
@@ -7,6 +7,10 @@ export interface SqlCacheContext {
7
7
  table_name: string;
8
8
  table_description: string;
9
9
  }[];
10
+ views: {
11
+ table_name: string;
12
+ table_description: string;
13
+ }[];
10
14
  columns: {
11
15
  table_name: string;
12
16
  column_id: number;
@@ -4,6 +4,7 @@ export function initSqlCacheContext() {
4
4
  contextName: CHATWMS_CONTEXT_NAME,
5
5
  variables: [],
6
6
  tables: [],
7
+ views: [],
7
8
  columns: [],
8
9
  functions: [],
9
10
  tableMappings: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.13.1",
3
+ "version": "8.13.2",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",