@cellaware/utils 8.1.6 → 8.1.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.
@@ -13,9 +13,9 @@ export interface ReportParameterValue {
13
13
  parameterName: string;
14
14
  /** `text` | `number` | `date` | `boolean` */
15
15
  dataType: string;
16
- rule: string | undefined;
17
- value: any;
18
- value2?: any;
16
+ rule: string;
17
+ value: string;
18
+ value2?: string;
19
19
  }
20
20
  export declare function initReportParameterValue(): ReportParameterValue;
21
21
  export interface Report {
@@ -4,10 +4,9 @@ export const REPORT_VISIBILITY_GLOBAL = 'global';
4
4
  export function initReportParameterValue() {
5
5
  return {
6
6
  parameterName: '',
7
- dataType: 'text',
8
- rule: undefined,
9
- value: '',
10
- value2: undefined
7
+ dataType: '',
8
+ rule: '',
9
+ value: ''
11
10
  };
12
11
  }
13
12
  export function initReport() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.1.6",
3
+ "version": "8.1.7",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",