@cellaware/utils 8.0.4 → 8.1.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.
@@ -6,8 +6,8 @@ export declare const REPORT_VISIBILITY_GLOBAL = "global";
6
6
  export interface ReportParameter {
7
7
  sequence: number;
8
8
  name: string;
9
- /** `text` | `number` | `date` | `boolean` */
10
- type: string;
9
+ required: boolean;
10
+ exampleValue: string;
11
11
  }
12
12
  export interface Report {
13
13
  reportId: string;
@@ -20,6 +20,7 @@ export interface Report {
20
20
  brief: string;
21
21
  clientId: string;
22
22
  userId: string;
23
+ customerLevel?: boolean;
23
24
  }
24
25
  export declare function initReport(): Report;
25
26
  export interface LineReportParameter {
@@ -40,6 +41,7 @@ export interface ReportLineContentInfo extends DatagridStateBase {
40
41
  tableGroups?: string[];
41
42
  developer?: boolean;
42
43
  archive?: boolean;
44
+ referenceLineId?: string;
43
45
  }
44
46
  export interface ReportLine {
45
47
  lineId: string;
@@ -63,4 +65,5 @@ export interface ReportUsage {
63
65
  clientId: string;
64
66
  userId: string;
65
67
  datetime: Date;
68
+ customerLevel?: boolean;
66
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.0.4",
3
+ "version": "8.1.0",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",