@metad/contracts 3.6.0-beta.0 → 3.6.0-beta.1
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.
package/package.json
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { CalculatedProperty } from '@metad/ocap-core'
|
|
2
1
|
import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
|
|
3
2
|
import { IIndicator } from './indicator'
|
|
4
3
|
import { ISemanticModel } from './semantic-model'
|
|
@@ -11,7 +10,7 @@ export type TQueryOptions = {
|
|
|
11
10
|
* Indicators modified by the client
|
|
12
11
|
*/
|
|
13
12
|
indicators?: IIndicator[]
|
|
14
|
-
calculatedMeasures?: CalculatedProperty[]
|
|
13
|
+
calculatedMeasures?: any[] // CalculatedProperty[]
|
|
15
14
|
} & Record<string, any>
|
|
16
15
|
|
|
17
16
|
export enum QueryStatusEnum {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PropertyHierarchy, Schema } from '@metad/ocap-core'
|
|
2
1
|
import { IBasePerTenantAndOrganizationEntityModel } from '../base-entity.model'
|
|
3
2
|
import { ITag } from '../tag-entity.model'
|
|
4
3
|
import { ChecklistItem, IPoint, ISize } from '../types'
|
|
@@ -37,7 +36,7 @@ export interface ISemanticModelPreferences {
|
|
|
37
36
|
/**
|
|
38
37
|
* Model Schema Structured Data
|
|
39
38
|
*/
|
|
40
|
-
export type TSemanticModelOptions<T = Schema
|
|
39
|
+
export type TSemanticModelOptions<T = any /*Schema*/> = {
|
|
41
40
|
/**
|
|
42
41
|
* The schema for MDX cube, dimension and virtual cube
|
|
43
42
|
*/
|
|
@@ -81,7 +80,7 @@ export type TSemanticModelSettings = {
|
|
|
81
80
|
/**
|
|
82
81
|
* @experimental A hierarchy of intermediate states that are not yet fixed
|
|
83
82
|
*/
|
|
84
|
-
hierarchies?: PropertyHierarchy[]
|
|
83
|
+
hierarchies?: any[] // PropertyHierarchy[]
|
|
85
84
|
|
|
86
85
|
/**
|
|
87
86
|
* Ignore unknown property when query model in story
|