@datapos/datapos-shared 0.1.878 → 0.1.879

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.
@@ -1,6 +1,6 @@
1
1
  import { Timestamp } from './timestamp';
2
2
  export interface ComponentConfig {
3
- description?: Record<string, unknown>[];
3
+ description?: Record<string, unknown>;
4
4
  firstCreatedAt?: Timestamp;
5
5
  id: string;
6
6
  label: Record<string, string>;
@@ -12,25 +12,25 @@ export interface ModelConfig extends ComponentConfig {
12
12
  export interface DimensionGroupConfig {
13
13
  id: string;
14
14
  label: Record<string, string>;
15
- description?: Record<string, unknown>[];
15
+ description?: Record<string, unknown>;
16
16
  dimensionRefs: ComponentRef[];
17
17
  }
18
18
  export interface EntityGroupConfig {
19
19
  id: string;
20
20
  label: Record<string, string>;
21
- description?: Record<string, unknown>[];
21
+ description?: Record<string, unknown>;
22
22
  entityRefs: ComponentRef[];
23
23
  }
24
24
  export interface SecondaryMeasureGroupConfig {
25
25
  id: string;
26
26
  label: Record<string, string>;
27
- description?: Record<string, unknown>[];
27
+ description?: Record<string, unknown>;
28
28
  secondaryMeasureRefs: ComponentRef[];
29
29
  }
30
30
  export interface ViewGroupConfig {
31
31
  id: string;
32
32
  label: Record<string, string>;
33
- description?: Record<string, unknown>[];
33
+ description?: Record<string, unknown>;
34
34
  viewRefs: ComponentRef[];
35
35
  }
36
36
  export interface DimensionConfig {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@datapos/datapos-shared",
3
3
  "license": "ISC",
4
4
  "private": false,
5
- "version": "0.1.878",
5
+ "version": "0.1.879",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist"