@salesforce/lds-adapters-cdp-semantic-authoring 1.380.0-dev1 → 1.380.0-dev10
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/dist/es/es2018/cdp-semantic-authoring.js +723 -155
- package/dist/es/es2018/types/src/generated/adapters/getSemanticModel.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsShallowByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticDimensionOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticGoalOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticGroupingOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticInsightsSettingsInputRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/SemanticInsightsSettingsOutputRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticMetricForecastConfigurationInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/SemanticMetricForecastConfigurationOutputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/SemanticMetricOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelExternalConnectionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticSubMetricOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticUnionOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +881 -313
- package/src/raml/api.raml +137 -1
|
@@ -8,6 +8,7 @@ export declare const getSemanticModel_ConfigPropertyNames: adapter$45$utils_Adap
|
|
|
8
8
|
export interface GetSemanticModelConfig {
|
|
9
9
|
modelApiNameOrId: string;
|
|
10
10
|
fieldName?: string;
|
|
11
|
+
fineGrainSecurity?: boolean;
|
|
11
12
|
includeModelContent?: boolean;
|
|
12
13
|
includeTableKeys?: boolean;
|
|
13
14
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
|
|
2
2
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "0ff409d003cd74094400b475d698bf15";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -46,6 +46,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
|
|
|
46
46
|
expression?: string;
|
|
47
47
|
/** The api name of the origin external connection. */
|
|
48
48
|
externalConnectionApiName?: string;
|
|
49
|
+
/** the external data type. */
|
|
50
|
+
externalDataType?: string;
|
|
49
51
|
/** The name of the corresponding external entity. */
|
|
50
52
|
externalStorageName?: string;
|
|
51
53
|
/** The logic expression for generating a filter based on the list of filters. */
|
|
@@ -56,6 +58,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
|
|
|
56
58
|
id: string;
|
|
57
59
|
/** The isOverrideBase property indicates whether a dimension from the base model is being overridden in the extended model during SDM Extensibility, allowing customization of existing semantic definitions.Default is false. */
|
|
58
60
|
isOverrideBase?: boolean;
|
|
61
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
62
|
+
isQueryable?: string;
|
|
59
63
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
60
64
|
isSystemDefinition?: boolean;
|
|
61
65
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
@@ -95,11 +99,13 @@ export interface SemanticCalculatedDimensionOutputRepresentation {
|
|
|
95
99
|
displayCategory?: string;
|
|
96
100
|
expression?: string;
|
|
97
101
|
externalConnectionApiName?: string;
|
|
102
|
+
externalDataType?: string;
|
|
98
103
|
externalStorageName?: string;
|
|
99
104
|
filterLogic?: string;
|
|
100
105
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
101
106
|
id: string;
|
|
102
107
|
isOverrideBase?: boolean;
|
|
108
|
+
isQueryable?: string;
|
|
103
109
|
isSystemDefinition?: boolean;
|
|
104
110
|
isVisible?: boolean;
|
|
105
111
|
label?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
|
|
2
2
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "65b35c82c52febf0709785df41c57ac3";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -50,6 +50,8 @@ export interface SemanticCalculatedMeasurementOutputRepresentationNormalized {
|
|
|
50
50
|
expression?: string;
|
|
51
51
|
/** The api name of the origin external connection. */
|
|
52
52
|
externalConnectionApiName?: string;
|
|
53
|
+
/** the external data type. */
|
|
54
|
+
externalDataType?: string;
|
|
53
55
|
/** The name of the corresponding external entity. */
|
|
54
56
|
externalStorageName?: string;
|
|
55
57
|
/** The logic expression for generating a filter based on the list of filters. */
|
|
@@ -62,6 +64,8 @@ export interface SemanticCalculatedMeasurementOutputRepresentationNormalized {
|
|
|
62
64
|
isAggregatable?: boolean;
|
|
63
65
|
/** The isOverrideBase property indicates whether a measurement from the base model is being overridden in the extended model during SDM Extensibility, allowing customization of existing semantic definitions.Default is false. */
|
|
64
66
|
isOverrideBase?: boolean;
|
|
67
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
68
|
+
isQueryable?: string;
|
|
65
69
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
66
70
|
isSystemDefinition?: boolean;
|
|
67
71
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
@@ -109,12 +113,14 @@ export interface SemanticCalculatedMeasurementOutputRepresentation {
|
|
|
109
113
|
displayCategory?: string;
|
|
110
114
|
expression?: string;
|
|
111
115
|
externalConnectionApiName?: string;
|
|
116
|
+
externalDataType?: string;
|
|
112
117
|
externalStorageName?: string;
|
|
113
118
|
filterLogic?: string;
|
|
114
119
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
115
120
|
id: string;
|
|
116
121
|
isAggregatable?: boolean;
|
|
117
122
|
isOverrideBase?: boolean;
|
|
123
|
+
isQueryable?: string;
|
|
118
124
|
isSystemDefinition?: boolean;
|
|
119
125
|
isVisible?: boolean;
|
|
120
126
|
label?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticDataObjectOutputRepresentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentatio
|
|
|
2
2
|
import { SemanticDimensionOutputRepresentation as SemanticDimensionOutputRepresentation_SemanticDimensionOutputRepresentation } from './SemanticDimensionOutputRepresentation';
|
|
3
3
|
import { SemanticMeasurementOutputRepresentation as SemanticMeasurementOutputRepresentation_SemanticMeasurementOutputRepresentation } from './SemanticMeasurementOutputRepresentation';
|
|
4
4
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "7804fea5e1a3894ad9c1e89a2ce17ab9";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -50,6 +50,8 @@ export interface SemanticDataObjectOutputRepresentationNormalized {
|
|
|
50
50
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
51
51
|
/** The object ID of the semantic entity. */
|
|
52
52
|
id: string;
|
|
53
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
54
|
+
isQueryable?: string;
|
|
53
55
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
54
56
|
isSystemDefinition?: boolean;
|
|
55
57
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -96,6 +98,7 @@ export interface SemanticDataObjectOutputRepresentation {
|
|
|
96
98
|
filterLogic?: string;
|
|
97
99
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
98
100
|
id: string;
|
|
101
|
+
isQueryable?: string;
|
|
99
102
|
isSystemDefinition?: boolean;
|
|
100
103
|
label?: string;
|
|
101
104
|
lastModifiedBy?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "41f2fc6532988d4bd7a9e76fbe1aa021";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -43,6 +43,8 @@ export interface SemanticDimensionOutputRepresentationNormalized {
|
|
|
43
43
|
description?: string;
|
|
44
44
|
/** Controls how data is represented in visualizations of the relationships between Semantic Calculated Dimensions and other Data Cloud Objects. Valid values are Discrete and Continuous. */
|
|
45
45
|
displayCategory?: string;
|
|
46
|
+
/** the external data type. */
|
|
47
|
+
externalDataType?: string;
|
|
46
48
|
/** The name of the corresponding external entity. */
|
|
47
49
|
externalStorageName?: string;
|
|
48
50
|
/** The object ID of the semantic entity. */
|
|
@@ -51,6 +53,8 @@ export interface SemanticDimensionOutputRepresentationNormalized {
|
|
|
51
53
|
isKeyQualifier?: boolean;
|
|
52
54
|
/** Indicates whether the field is a primary key. */
|
|
53
55
|
isPrimaryKey?: boolean;
|
|
56
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
57
|
+
isQueryable?: string;
|
|
54
58
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
55
59
|
isSystemDefinition?: boolean;
|
|
56
60
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
@@ -89,10 +93,12 @@ export interface SemanticDimensionOutputRepresentation {
|
|
|
89
93
|
decimalPlace?: number;
|
|
90
94
|
description?: string;
|
|
91
95
|
displayCategory?: string;
|
|
96
|
+
externalDataType?: string;
|
|
92
97
|
externalStorageName?: string;
|
|
93
98
|
id: string;
|
|
94
99
|
isKeyQualifier?: boolean;
|
|
95
100
|
isPrimaryKey?: boolean;
|
|
101
|
+
isQueryable?: string;
|
|
96
102
|
isSystemDefinition?: boolean;
|
|
97
103
|
isVisible?: boolean;
|
|
98
104
|
keyQualifierName?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SemanticGoalDateRangeOutputRepresentation as SemanticGoalDateRangeOutputRepresentation_SemanticGoalDateRangeOutputRepresentation } from './SemanticGoalDateRangeOutputRepresentation';
|
|
2
2
|
import { SemanticGoalStatusConditionOutputRepresentation as SemanticGoalStatusConditionOutputRepresentation_SemanticGoalStatusConditionOutputRepresentation } from './SemanticGoalStatusConditionOutputRepresentation';
|
|
3
3
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "8ade9728ba6d188b7fa9237cf944576e";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -47,6 +47,8 @@ export interface SemanticGoalOutputRepresentationNormalized {
|
|
|
47
47
|
forecasting: boolean;
|
|
48
48
|
/** The object ID of the semantic entity. */
|
|
49
49
|
id: string;
|
|
50
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
51
|
+
isQueryable?: string;
|
|
50
52
|
/** The display name of the semantic entity to be used in the ui. */
|
|
51
53
|
label?: string;
|
|
52
54
|
/** The user who last modified the semantic entity. */
|
|
@@ -76,6 +78,7 @@ export interface SemanticGoalOutputRepresentation {
|
|
|
76
78
|
description?: string;
|
|
77
79
|
forecasting: boolean;
|
|
78
80
|
id: string;
|
|
81
|
+
isQueryable?: string;
|
|
79
82
|
label?: string;
|
|
80
83
|
lastModifiedBy?: string;
|
|
81
84
|
lastModifiedDate?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SemanticGroupingConfigurationOutputRepresentation as SemanticGroupingConfigurationOutputRepresentation_SemanticGroupingConfigurationOutputRepresentation } from './SemanticGroupingConfigurationOutputRepresentation';
|
|
2
2
|
import { SemanticFieldReferenceOutputRepresentation as SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation } from './SemanticFieldReferenceOutputRepresentation';
|
|
3
3
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "781f9dcf8c74d2f32cce84d91cf9e6af";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -39,10 +39,14 @@ export interface SemanticGroupingOutputRepresentationNormalized {
|
|
|
39
39
|
createdDate: string;
|
|
40
40
|
/** The Description of the semantic entity. */
|
|
41
41
|
description?: string;
|
|
42
|
+
/** the external data type. */
|
|
43
|
+
externalDataType?: string;
|
|
42
44
|
/** References to a specific field. */
|
|
43
45
|
fieldReference: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
|
|
44
46
|
/** The object ID of the semantic entity. */
|
|
45
47
|
id: string;
|
|
48
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
49
|
+
isQueryable?: string;
|
|
46
50
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
47
51
|
isSystemDefinition?: boolean;
|
|
48
52
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -70,8 +74,10 @@ export interface SemanticGroupingOutputRepresentation {
|
|
|
70
74
|
createdBy: string;
|
|
71
75
|
createdDate: string;
|
|
72
76
|
description?: string;
|
|
77
|
+
externalDataType?: string;
|
|
73
78
|
fieldReference: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
|
|
74
79
|
id: string;
|
|
80
|
+
isQueryable?: string;
|
|
75
81
|
isSystemDefinition?: boolean;
|
|
76
82
|
label?: string;
|
|
77
83
|
lastModifiedBy?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticInsightsSettingsInputRepresentation.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { SemanticMetricForecastConfigurationInputRepresentation as SemanticMetricForecastConfigurationInputRepresentation_SemanticMetricForecastConfigurationInputRepresentation } from './SemanticMetricForecastConfigurationInputRepresentation';
|
|
1
2
|
import { SemanticIdentifyingDimensionInputRepresentation as SemanticIdentifyingDimensionInputRepresentation_SemanticIdentifyingDimensionInputRepresentation } from './SemanticIdentifyingDimensionInputRepresentation';
|
|
2
3
|
import { SemanticInsightTypeInputRepresentation as SemanticInsightTypeInputRepresentation_SemanticInsightTypeInputRepresentation } from './SemanticInsightTypeInputRepresentation';
|
|
3
4
|
import { SemanticFieldReferenceInputRepresentation as SemanticFieldReferenceInputRepresentation_SemanticFieldReferenceInputRepresentation } from './SemanticFieldReferenceInputRepresentation';
|
|
4
5
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "ce9ffe57403e4387408b0151405de39b";
|
|
6
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
8
|
export declare const RepresentationType: string;
|
|
8
9
|
export declare function normalize(input: SemanticInsightsSettingsInputRepresentation, existing: SemanticInsightsSettingsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticInsightsSettingsInputRepresentationNormalized;
|
|
@@ -17,6 +18,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
17
18
|
* (none)
|
|
18
19
|
*/
|
|
19
20
|
export interface SemanticInsightsSettingsInputRepresentationNormalized {
|
|
21
|
+
/** Configuration for metric forecasting. */
|
|
22
|
+
forecastConfiguration?: SemanticMetricForecastConfigurationInputRepresentation_SemanticMetricForecastConfigurationInputRepresentation;
|
|
20
23
|
/** Dimensions that uniquely identify a row in the dataset */
|
|
21
24
|
identifyingDimension?: SemanticIdentifyingDimensionInputRepresentation_SemanticIdentifyingDimensionInputRepresentation;
|
|
22
25
|
/** Insight types allowed */
|
|
@@ -37,6 +40,7 @@ export interface SemanticInsightsSettingsInputRepresentationNormalized {
|
|
|
37
40
|
* (none)
|
|
38
41
|
*/
|
|
39
42
|
export interface SemanticInsightsSettingsInputRepresentation {
|
|
43
|
+
forecastConfiguration?: SemanticMetricForecastConfigurationInputRepresentation_SemanticMetricForecastConfigurationInputRepresentation;
|
|
40
44
|
identifyingDimension?: SemanticIdentifyingDimensionInputRepresentation_SemanticIdentifyingDimensionInputRepresentation;
|
|
41
45
|
insightTypes?: Array<SemanticInsightTypeInputRepresentation_SemanticInsightTypeInputRepresentation>;
|
|
42
46
|
insightsDimensionsReferences?: Array<SemanticFieldReferenceInputRepresentation_SemanticFieldReferenceInputRepresentation>;
|
package/dist/es/es2018/types/src/generated/types/SemanticInsightsSettingsOutputRepresentation.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { SemanticMetricForecastConfigurationOutputRepresentation as SemanticMetricForecastConfigurationOutputRepresentation_SemanticMetricForecastConfigurationOutputRepresentation } from './SemanticMetricForecastConfigurationOutputRepresentation';
|
|
1
2
|
import { SemanticIdentifyingDimensionOutputRepresentation as SemanticIdentifyingDimensionOutputRepresentation_SemanticIdentifyingDimensionOutputRepresentation } from './SemanticIdentifyingDimensionOutputRepresentation';
|
|
2
3
|
import { SemanticInsightTypeOutputRepresentation as SemanticInsightTypeOutputRepresentation_SemanticInsightTypeOutputRepresentation } from './SemanticInsightTypeOutputRepresentation';
|
|
3
4
|
import { SemanticFieldReferenceOutputRepresentation as SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation } from './SemanticFieldReferenceOutputRepresentation';
|
|
4
5
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "1ee2337e8f73261cbb44258b393d1bec";
|
|
6
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
8
|
export declare const RepresentationType: string;
|
|
8
9
|
export declare function normalize(input: SemanticInsightsSettingsOutputRepresentation, existing: SemanticInsightsSettingsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticInsightsSettingsOutputRepresentationNormalized;
|
|
@@ -17,6 +18,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
17
18
|
* (none)
|
|
18
19
|
*/
|
|
19
20
|
export interface SemanticInsightsSettingsOutputRepresentationNormalized {
|
|
21
|
+
/** Configuration for metric forecasting. */
|
|
22
|
+
forecastConfiguration?: SemanticMetricForecastConfigurationOutputRepresentation_SemanticMetricForecastConfigurationOutputRepresentation;
|
|
20
23
|
/** Dimensions that uniquely identify a row in the dataset */
|
|
21
24
|
identifyingDimension?: SemanticIdentifyingDimensionOutputRepresentation_SemanticIdentifyingDimensionOutputRepresentation;
|
|
22
25
|
/** Insight types allowed */
|
|
@@ -37,6 +40,7 @@ export interface SemanticInsightsSettingsOutputRepresentationNormalized {
|
|
|
37
40
|
* (none)
|
|
38
41
|
*/
|
|
39
42
|
export interface SemanticInsightsSettingsOutputRepresentation {
|
|
43
|
+
forecastConfiguration?: SemanticMetricForecastConfigurationOutputRepresentation_SemanticMetricForecastConfigurationOutputRepresentation;
|
|
40
44
|
identifyingDimension?: SemanticIdentifyingDimensionOutputRepresentation_SemanticIdentifyingDimensionOutputRepresentation;
|
|
41
45
|
insightTypes?: Array<SemanticInsightTypeOutputRepresentation_SemanticInsightTypeOutputRepresentation>;
|
|
42
46
|
insightsDimensionsReferences?: Array<SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation>;
|
package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $
|
|
|
3
3
|
import { SemanticDataObjectOutputRepresentation as SemanticDataObjectOutputRepresentation_SemanticDataObjectOutputRepresentation } from './SemanticDataObjectOutputRepresentation';
|
|
4
4
|
import { SemanticRelationshipOutputRepresentation as SemanticRelationshipOutputRepresentation_SemanticRelationshipOutputRepresentation } from './SemanticRelationshipOutputRepresentation';
|
|
5
5
|
import { SemanticUnionOutputRepresentation as SemanticUnionOutputRepresentation_SemanticUnionOutputRepresentation } from './SemanticUnionOutputRepresentation';
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "deed87abd43631c27a6067ac00a1a018";
|
|
7
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
8
|
export declare const RepresentationType: string;
|
|
9
9
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -60,6 +60,8 @@ export interface SemanticLogicalViewOutputRepresentationNormalized {
|
|
|
60
60
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
61
61
|
/** The object ID of the semantic entity. */
|
|
62
62
|
id: string;
|
|
63
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
64
|
+
isQueryable?: string;
|
|
63
65
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
64
66
|
isSystemDefinition?: boolean;
|
|
65
67
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -100,6 +102,7 @@ export interface SemanticLogicalViewOutputRepresentation {
|
|
|
100
102
|
filterLogic?: string;
|
|
101
103
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
102
104
|
id: string;
|
|
105
|
+
isQueryable?: string;
|
|
103
106
|
isSystemDefinition?: boolean;
|
|
104
107
|
label?: string;
|
|
105
108
|
lastModifiedBy?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticMappedFieldOutputRepresentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { SemanticTableFieldReferenceOutputRepresentation as SemanticTableFieldRe
|
|
|
2
2
|
import { SemanticDimensionOutputRepresentation as SemanticDimensionOutputRepresentation_SemanticDimensionOutputRepresentation } from './SemanticDimensionOutputRepresentation';
|
|
3
3
|
import { SemanticMeasurementOutputRepresentation as SemanticMeasurementOutputRepresentation_SemanticMeasurementOutputRepresentation } from './SemanticMeasurementOutputRepresentation';
|
|
4
4
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "35088fced8f6d5a9595954736caf0ea9";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -42,6 +42,8 @@ export interface SemanticMappedFieldOutputRepresentationNormalized {
|
|
|
42
42
|
fields?: Array<SemanticTableFieldReferenceOutputRepresentation_SemanticTableFieldReferenceOutputRepresentation>;
|
|
43
43
|
/** The object ID of the semantic entity. */
|
|
44
44
|
id: string;
|
|
45
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
46
|
+
isQueryable?: string;
|
|
45
47
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
46
48
|
isSystemDefinition?: boolean;
|
|
47
49
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -73,6 +75,7 @@ export interface SemanticMappedFieldOutputRepresentation {
|
|
|
73
75
|
description?: string;
|
|
74
76
|
fields?: Array<SemanticTableFieldReferenceOutputRepresentation_SemanticTableFieldReferenceOutputRepresentation>;
|
|
75
77
|
id: string;
|
|
78
|
+
isQueryable?: string;
|
|
76
79
|
isSystemDefinition?: boolean;
|
|
77
80
|
label?: string;
|
|
78
81
|
lastModifiedBy?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticMeasurementOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "181201e45db5bfb0c5947451faf543d2";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -47,6 +47,8 @@ export interface SemanticMeasurementOutputRepresentationNormalized {
|
|
|
47
47
|
directionality?: string;
|
|
48
48
|
/** Controls how data is represented in visualizations of the relationships between Semantic Calculated Dimensions and other Data Cloud Objects. Valid values are Discrete and Continuous. */
|
|
49
49
|
displayCategory?: string;
|
|
50
|
+
/** the external data type. */
|
|
51
|
+
externalDataType?: string;
|
|
50
52
|
/** The name of the corresponding external entity. */
|
|
51
53
|
externalStorageName?: string;
|
|
52
54
|
/** The object ID of the semantic entity. */
|
|
@@ -57,6 +59,8 @@ export interface SemanticMeasurementOutputRepresentationNormalized {
|
|
|
57
59
|
isKeyQualifier?: boolean;
|
|
58
60
|
/** Indicates whether the field is a primary key. */
|
|
59
61
|
isPrimaryKey?: boolean;
|
|
62
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
63
|
+
isQueryable?: string;
|
|
60
64
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
61
65
|
isSystemDefinition?: boolean;
|
|
62
66
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
@@ -101,11 +105,13 @@ export interface SemanticMeasurementOutputRepresentation {
|
|
|
101
105
|
description?: string;
|
|
102
106
|
directionality?: string;
|
|
103
107
|
displayCategory?: string;
|
|
108
|
+
externalDataType?: string;
|
|
104
109
|
externalStorageName?: string;
|
|
105
110
|
id: string;
|
|
106
111
|
isAggregatable?: boolean;
|
|
107
112
|
isKeyQualifier?: boolean;
|
|
108
113
|
isPrimaryKey?: boolean;
|
|
114
|
+
isQueryable?: string;
|
|
109
115
|
isSystemDefinition?: boolean;
|
|
110
116
|
isVisible?: boolean;
|
|
111
117
|
keyQualifierName?: string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SemanticFieldReferenceInputRepresentation as SemanticFieldReferenceInputRepresentation_SemanticFieldReferenceInputRepresentation } from './SemanticFieldReferenceInputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "c57af2612a62d6ed236b367defadebf6";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: SemanticMetricForecastConfigurationInputRepresentation, existing: SemanticMetricForecastConfigurationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticMetricForecastConfigurationInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: SemanticMetricForecastConfigurationInputRepresentationNormalized, incoming: SemanticMetricForecastConfigurationInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticMetricForecastConfigurationInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for metric forecast configuration
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface SemanticMetricForecastConfigurationInputRepresentationNormalized {
|
|
18
|
+
/** Reference to the forecast measurement field */
|
|
19
|
+
forecastMeasurementReference?: SemanticFieldReferenceInputRepresentation_SemanticFieldReferenceInputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Input representation for metric forecast configuration
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface SemanticMetricForecastConfigurationInputRepresentation {
|
|
28
|
+
forecastMeasurementReference?: SemanticFieldReferenceInputRepresentation_SemanticFieldReferenceInputRepresentation;
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { SemanticFieldReferenceOutputRepresentation as SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation } from './SemanticFieldReferenceOutputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "abbe4306b9ecdab2a1f50709c75eb26a";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: SemanticMetricForecastConfigurationOutputRepresentation, existing: SemanticMetricForecastConfigurationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticMetricForecastConfigurationOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: SemanticMetricForecastConfigurationOutputRepresentationNormalized, incoming: SemanticMetricForecastConfigurationOutputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticMetricForecastConfigurationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation for metric forecast configuration.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface SemanticMetricForecastConfigurationOutputRepresentationNormalized {
|
|
18
|
+
/** Reference to the forecast measurement field */
|
|
19
|
+
forecastMeasurementReference?: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Output representation for metric forecast configuration.
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface SemanticMetricForecastConfigurationOutputRepresentation {
|
|
28
|
+
forecastMeasurementReference?: SemanticFieldReferenceOutputRepresentation_SemanticFieldReferenceOutputRepresentation;
|
|
29
|
+
}
|
|
@@ -2,7 +2,7 @@ import { SemanticFieldReferenceOutputRepresentation as SemanticFieldReferenceOut
|
|
|
2
2
|
import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
|
|
3
3
|
import { SemanticInsightsSettingsOutputRepresentation as SemanticInsightsSettingsOutputRepresentation_SemanticInsightsSettingsOutputRepresentation } from './SemanticInsightsSettingsOutputRepresentation';
|
|
4
4
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "3800a2eb703d5a4964899b4e067ee1d8";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -52,6 +52,8 @@ export interface SemanticMetricOutputRepresentationNormalized {
|
|
|
52
52
|
insightsSettings?: SemanticInsightsSettingsOutputRepresentation_SemanticInsightsSettingsOutputRepresentation;
|
|
53
53
|
/** Indicate if the aggregation is cumulative or not. */
|
|
54
54
|
isCumulative?: boolean;
|
|
55
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
56
|
+
isQueryable?: string;
|
|
55
57
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
56
58
|
isSystemDefinition?: boolean;
|
|
57
59
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -89,6 +91,7 @@ export interface SemanticMetricOutputRepresentation {
|
|
|
89
91
|
id: string;
|
|
90
92
|
insightsSettings?: SemanticInsightsSettingsOutputRepresentation_SemanticInsightsSettingsOutputRepresentation;
|
|
91
93
|
isCumulative?: boolean;
|
|
94
|
+
isQueryable?: string;
|
|
92
95
|
isSystemDefinition?: boolean;
|
|
93
96
|
label?: string;
|
|
94
97
|
lastModifiedBy?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation as SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation_SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation } from './SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "d39ef07b537fde1ac49a10bfc73d7db1";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: SemanticModelExternalConnectionOutputRepresentation, existing: SemanticModelExternalConnectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticModelExternalConnectionOutputRepresentationNormalized;
|
|
@@ -21,6 +21,8 @@ export interface SemanticModelExternalConnectionOutputRepresentationNormalized {
|
|
|
21
21
|
baseModelApiName?: string;
|
|
22
22
|
/** The object ID of the semantic entity. */
|
|
23
23
|
id: string;
|
|
24
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
25
|
+
isQueryable?: string;
|
|
24
26
|
/** The display name of the semantic entity to be used in the ui. */
|
|
25
27
|
label?: string;
|
|
26
28
|
tableauPublishedDataSource?: SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation_SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation;
|
|
@@ -37,6 +39,7 @@ export interface SemanticModelExternalConnectionOutputRepresentation {
|
|
|
37
39
|
apiName: string;
|
|
38
40
|
baseModelApiName?: string;
|
|
39
41
|
id: string;
|
|
42
|
+
isQueryable?: string;
|
|
40
43
|
label?: string;
|
|
41
44
|
tableauPublishedDataSource?: SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation_SemanticModelExternalConnectionTableauPublishedDataSourceOutputRepresentation;
|
|
42
45
|
type: string;
|
|
@@ -10,7 +10,7 @@ import { SemanticLogicalViewOutputRepresentation as SemanticLogicalViewOutputRep
|
|
|
10
10
|
import { SemanticMetricOutputRepresentation as SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation } from './SemanticMetricOutputRepresentation';
|
|
11
11
|
import { SemanticParameterOutputRepresentation as SemanticParameterOutputRepresentation_SemanticParameterOutputRepresentation } from './SemanticParameterOutputRepresentation';
|
|
12
12
|
import { SemanticRelationshipOutputRepresentation as SemanticRelationshipOutputRepresentation_SemanticRelationshipOutputRepresentation } from './SemanticRelationshipOutputRepresentation';
|
|
13
|
-
export declare const VERSION = "
|
|
13
|
+
export declare const VERSION = "56b6e81346b63674fb571a55fe7128bc";
|
|
14
14
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
15
15
|
export declare const RepresentationType: string;
|
|
16
16
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -85,6 +85,10 @@ export interface SemanticModelOutputRepresentationNormalized {
|
|
|
85
85
|
id: string;
|
|
86
86
|
/** Is the model locked for edit/ delete. */
|
|
87
87
|
isLocked?: boolean;
|
|
88
|
+
/** Indicates if the model is partial because of Data Gov. */
|
|
89
|
+
isPartialSdm?: boolean;
|
|
90
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
91
|
+
isQueryable?: string;
|
|
88
92
|
/** The display name of the semantic entity to be used in the ui. */
|
|
89
93
|
label?: string;
|
|
90
94
|
/** The user who last modified the semantic entity. */
|
|
@@ -147,6 +151,8 @@ export interface SemanticModelOutputRepresentation {
|
|
|
147
151
|
fieldsOverrides?: Array<SemanticOverrideOutputRepresentation_SemanticOverrideOutputRepresentation>;
|
|
148
152
|
id: string;
|
|
149
153
|
isLocked?: boolean;
|
|
154
|
+
isPartialSdm?: boolean;
|
|
155
|
+
isQueryable?: string;
|
|
150
156
|
label?: string;
|
|
151
157
|
lastModifiedBy?: string;
|
|
152
158
|
lastModifiedDate?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticModelPartialOutputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticBaseModelOutputRepresentation as SemanticBaseModelOutputRepresentation_SemanticBaseModelOutputRepresentation } from './SemanticBaseModelOutputRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "fbfcf3d65a4ca4d916f66efc9208f1cb";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: SemanticModelPartialOutputRepresentation, existing: SemanticModelPartialOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticModelPartialOutputRepresentationNormalized;
|
|
@@ -43,6 +43,8 @@ export interface SemanticModelPartialOutputRepresentationNormalized {
|
|
|
43
43
|
id: string;
|
|
44
44
|
/** Is the model locked for edit/ delete. */
|
|
45
45
|
isLocked?: boolean;
|
|
46
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
47
|
+
isQueryable?: string;
|
|
46
48
|
/** The display name of the semantic entity to be used in the ui. */
|
|
47
49
|
label?: string;
|
|
48
50
|
/** The user who last modified the semantic entity. */
|
|
@@ -89,6 +91,7 @@ export interface SemanticModelPartialOutputRepresentation {
|
|
|
89
91
|
description?: string;
|
|
90
92
|
id: string;
|
|
91
93
|
isLocked?: boolean;
|
|
94
|
+
isQueryable?: string;
|
|
92
95
|
label?: string;
|
|
93
96
|
lastModifiedBy?: string;
|
|
94
97
|
lastModifiedDate?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticParameterListValueOutputRepresentation as SemanticParameterListValueOutputRepresentation_SemanticParameterListValueOutputRepresentation } from './SemanticParameterListValueOutputRepresentation';
|
|
2
2
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "9c342600b8e3532a417118e4e7055032";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -42,8 +42,12 @@ export interface SemanticParameterOutputRepresentationNormalized {
|
|
|
42
42
|
defaultValue?: string;
|
|
43
43
|
/** The Description of the semantic entity. */
|
|
44
44
|
description?: string;
|
|
45
|
+
/** the external data type. */
|
|
46
|
+
externalDataType?: string;
|
|
45
47
|
/** The object ID of the semantic entity. */
|
|
46
48
|
id: string;
|
|
49
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
50
|
+
isQueryable?: string;
|
|
47
51
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
48
52
|
isSystemDefinition?: boolean;
|
|
49
53
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -81,7 +85,9 @@ export interface SemanticParameterOutputRepresentation {
|
|
|
81
85
|
dataType?: string;
|
|
82
86
|
defaultValue?: string;
|
|
83
87
|
description?: string;
|
|
88
|
+
externalDataType?: string;
|
|
84
89
|
id: string;
|
|
90
|
+
isQueryable?: string;
|
|
85
91
|
isSystemDefinition?: boolean;
|
|
86
92
|
label?: string;
|
|
87
93
|
lastModifiedBy?: string;
|
package/dist/es/es2018/types/src/generated/types/SemanticRelationshipOutputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticRelationshipCriteriaOutputRepresentation as SemanticRelationshipCriteriaOutputRepresentation_SemanticRelationshipCriteriaOutputRepresentation } from './SemanticRelationshipCriteriaOutputRepresentation';
|
|
2
2
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "b54e564b71d26e8ac89b5649db876f6f";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -44,6 +44,8 @@ export interface SemanticRelationshipOutputRepresentationNormalized {
|
|
|
44
44
|
id: string;
|
|
45
45
|
/** Indicates whether the relationship is currently enabled */
|
|
46
46
|
isEnabled?: boolean;
|
|
47
|
+
/** Indicates if the entity can be queried in semantic query engine */
|
|
48
|
+
isQueryable?: string;
|
|
47
49
|
/** The isSystemDefinition property indicates whether a semantic definition is an automatically generated one. These semantic definitions cannot be modified or deleted.Default is false. */
|
|
48
50
|
isSystemDefinition?: boolean;
|
|
49
51
|
/** the join type of the semantic relationship. */
|
|
@@ -80,6 +82,7 @@ export interface SemanticRelationshipOutputRepresentation {
|
|
|
80
82
|
description?: string;
|
|
81
83
|
id: string;
|
|
82
84
|
isEnabled?: boolean;
|
|
85
|
+
isQueryable?: string;
|
|
83
86
|
isSystemDefinition?: boolean;
|
|
84
87
|
joinType?: string;
|
|
85
88
|
label?: string;
|