@datapos/datapos-shared 0.1.875 → 0.1.876

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.
@@ -9,25 +9,25 @@ export interface ModelConfig extends ComponentConfig {
9
9
  secondaryMeasureGroupConfigs: SecondaryMeasureGroupConfig[];
10
10
  viewGroupConfigs: ViewGroupConfig[];
11
11
  }
12
- interface DimensionGroupConfig {
12
+ export interface DimensionGroupConfig {
13
13
  id: string;
14
14
  label: Record<string, string>;
15
15
  description?: Record<string, string>;
16
16
  dimensionRefs: ComponentRef[];
17
17
  }
18
- interface EntityGroupConfig {
18
+ export interface EntityGroupConfig {
19
19
  id: string;
20
20
  label: Record<string, string>;
21
21
  description?: Record<string, string>;
22
22
  entityRefs: ComponentRef[];
23
23
  }
24
- interface SecondaryMeasureGroupConfig {
24
+ export interface SecondaryMeasureGroupConfig {
25
25
  id: string;
26
26
  label: Record<string, string>;
27
27
  description?: Record<string, string>;
28
28
  secondaryMeasureRefs: ComponentRef[];
29
29
  }
30
- interface ViewGroupConfig {
30
+ export interface ViewGroupConfig {
31
31
  id: string;
32
32
  label: Record<string, string>;
33
33
  description?: Record<string, string>;
@@ -77,4 +77,3 @@ export interface Event {
77
77
  effDate: number;
78
78
  typeId: string;
79
79
  }
80
- export {};
@@ -14,7 +14,7 @@ export type { PreviewResult, PreviewSettings } from './connector';
14
14
  export type { RemoveSettings } from './connector';
15
15
  export type { RetrieveResult, RetrieveSettings, RetrieveSummary, RetrieveTools } from './connector';
16
16
  export type { UpsertSettings } from './connector';
17
- export type { FocusConfig, ModelConfig, DimensionConfig, EntityCharacteristicConfig, EntityComputationConfig } from './context';
17
+ export type { FocusConfig, ModelConfig, DimensionConfig, DimensionGroupConfig, EntityCharacteristicConfig, EntityGroupConfig, EntityComputationConfig, SecondaryMeasureGroupConfig, ViewGroupConfig } from './context';
18
18
  export type { EntityConfig, EntityEventConfig, HierarchyConfig, ViewConfig, Event } from './context';
19
19
  export type { DataFormatId, EncodingConfig, RecordDelimiterId, ValueDelimiterId } from './dataView';
20
20
  export type { DataViewConfig, DataViewContentAuditConfig, DataViewPreviewConfig, DataViewRelationshipsAuditConfig, ParsedValue } from './dataView';
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.875",
5
+ "version": "0.1.876",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist"