@cellaware/utils 8.15.3 → 8.17.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.
@@ -49,8 +49,6 @@ export interface AlertContentInfo extends DatagridStateBase {
49
49
  contextName: DataContext;
50
50
  specification: string;
51
51
  query: string;
52
- /** Parsed & optimized database version of ChatWMS query. */
53
- jitQuery?: string;
54
52
  summary: string;
55
53
  reviewOk?: boolean;
56
54
  reviewConfidence?: string;
@@ -1,63 +1,20 @@
1
- import { DataContext } from "./client.js";
2
1
  import { DatagridStateBase } from "./datagrid.js";
3
2
  export declare const BI_STUDIO_VISIBILITY_PRIVATE = "private";
4
3
  export declare const BI_STUDIO_VISIBILITY_PUBLIC = "public";
5
4
  export declare const BI_STUDIO_VISIBILITY_GLOBAL = "global";
6
- export interface BICanvasParameter {
7
- sequence: number;
8
- name: string;
9
- required: boolean;
10
- exampleValue: string;
11
- }
12
- export interface BICanvasParameterValue {
13
- parameterName: string;
14
- /** `text` | `number` | `date` | `boolean` */
15
- dataType: string;
16
- rule: string;
17
- value: string;
18
- value2?: string;
19
- }
20
- export declare function initBICanvasParameterValue(): BICanvasParameterValue;
21
5
  export interface BICanvas {
22
6
  canvasId: string;
23
7
  canvasTitle: string;
24
8
  canvasRoute: string;
25
9
  visibility: string;
26
10
  readonly: boolean;
27
- parameters: BICanvasParameter[];
28
11
  folder: string;
29
- dataSources: BICanvasDataSource[];
30
- /** **Important:** includes custom widget datagrid states. */
31
12
  state: BICanvasState;
32
13
  clientId: string;
33
14
  userId: string;
34
15
  customerLevel?: boolean;
35
16
  }
36
17
  export declare function initBICanvas(): BICanvas;
37
- export interface DataSourceBICanvasParameter {
38
- parameterName: string;
39
- columnName: string;
40
- }
41
- export interface BICanvasDataSourceContentInfo extends DatagridStateBase {
42
- canvasParameters: DataSourceBICanvasParameter[];
43
- contextName: DataContext;
44
- specification: string;
45
- query: string;
46
- /** Parsed & optimized database version of ChatWMS query. */
47
- jitQuery?: string;
48
- summary: string;
49
- reviewOk?: boolean;
50
- reviewConfidence?: string;
51
- reviewFeedback?: string;
52
- developer?: boolean;
53
- archive?: boolean;
54
- }
55
- export interface BICanvasDataSource {
56
- canvasDataSourceId: string;
57
- canvasDataSourceTitle: string;
58
- canvasId: string;
59
- contentInfo: BICanvasDataSourceContentInfo;
60
- }
61
18
  export interface BICanvasCustomWidgetDatagridState extends DatagridStateBase {
62
19
  widgetId: string;
63
20
  }
@@ -1,14 +1,6 @@
1
1
  export const BI_STUDIO_VISIBILITY_PRIVATE = 'private';
2
2
  export const BI_STUDIO_VISIBILITY_PUBLIC = 'public';
3
3
  export const BI_STUDIO_VISIBILITY_GLOBAL = 'global';
4
- export function initBICanvasParameterValue() {
5
- return {
6
- parameterName: '',
7
- dataType: '',
8
- rule: '',
9
- value: ''
10
- };
11
- }
12
4
  export function initBICanvas() {
13
5
  return {
14
6
  canvasId: '',
@@ -16,9 +8,7 @@ export function initBICanvas() {
16
8
  canvasRoute: '',
17
9
  visibility: BI_STUDIO_VISIBILITY_PRIVATE,
18
10
  readonly: false,
19
- parameters: [],
20
11
  folder: '',
21
- dataSources: [],
22
12
  state: initBICanvasState(),
23
13
  clientId: '',
24
14
  userId: ''
@@ -44,8 +44,6 @@ export interface DashboardWidgetContentInfo extends DatagridStateBase {
44
44
  contextName: DataContext;
45
45
  specification: string;
46
46
  query: string;
47
- /** Parsed & optimized database version of ChatWMS query. */
48
- jitQuery?: string;
49
47
  summary: string;
50
48
  reviewOk?: boolean;
51
49
  reviewConfidence?: string;
@@ -54,8 +54,6 @@ export interface ReportLineContentInfo extends DatagridStateBase {
54
54
  contextName: DataContext;
55
55
  specification: string;
56
56
  query: string;
57
- /** Parsed & optimized database version of ChatWMS query. */
58
- jitQuery?: string;
59
57
  summary: string;
60
58
  reviewOk?: boolean;
61
59
  reviewConfidence?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.15.3",
3
+ "version": "8.17.0",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",