@salesforce/lds-adapters-cdp-semantic-authoring 1.352.0 → 1.353.0
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 +506 -226
- package/dist/es/es2018/types/src/generated/adapters/createSemanticModel.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/patchSemanticModel.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsByModelApiNameOrId.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModels.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsCalculatedDimensionsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsCalculatedMeasurementsByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsByModelApiNameOrId.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsCalculatedDimensionsByCalculatedDimensionNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsCalculatedDimensionsConvertToMeasurementByCalculatedDimensionNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsCalculatedMeasurementsByCalculatedMeasurementNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsCalculatedMeasurementsConvertToDimensionByCalculatedMeasurementNameOrIdAndModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelInputRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/SemanticModelOutputRepresentation.d.ts +5 -1
- package/package.json +3 -3
- package/sfdc/index.js +415 -135
- package/src/raml/api.raml +30 -2
|
@@ -2,6 +2,7 @@ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio
|
|
|
2
2
|
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
3
|
import { SemanticBaseModelInputRepresentation as types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation } from '../types/SemanticBaseModelInputRepresentation';
|
|
4
4
|
import { SemanticModelExternalConnectionInputRepresentation as types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation } from '../types/SemanticModelExternalConnectionInputRepresentation';
|
|
5
|
+
import { SemanticOverrideInputRepresentation as types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation } from '../types/SemanticOverrideInputRepresentation';
|
|
5
6
|
import { SemanticCalculatedDimensionInputRepresentation as types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation } from '../types/SemanticCalculatedDimensionInputRepresentation';
|
|
6
7
|
import { SemanticCalculatedMeasurementInputRepresentation as types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation } from '../types/SemanticCalculatedMeasurementInputRepresentation';
|
|
7
8
|
import { SemanticDataObjectInputRepresentation as types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation } from '../types/SemanticDataObjectInputRepresentation';
|
|
@@ -27,6 +28,7 @@ export interface CreateSemanticModelConfig {
|
|
|
27
28
|
sourceCreationName?: string;
|
|
28
29
|
baseModels?: Array<types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation>;
|
|
29
30
|
externalConnections?: Array<types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
31
|
+
fieldsOverrides?: Array<types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
30
32
|
semanticCalculatedDimensions?: Array<types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation>;
|
|
31
33
|
semanticCalculatedMeasurements?: Array<types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation>;
|
|
32
34
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
@@ -2,6 +2,7 @@ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio
|
|
|
2
2
|
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
3
|
import { SemanticBaseModelInputRepresentation as types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation } from '../types/SemanticBaseModelInputRepresentation';
|
|
4
4
|
import { SemanticModelExternalConnectionInputRepresentation as types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation } from '../types/SemanticModelExternalConnectionInputRepresentation';
|
|
5
|
+
import { SemanticOverrideInputRepresentation as types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation } from '../types/SemanticOverrideInputRepresentation';
|
|
5
6
|
import { SemanticCalculatedDimensionInputRepresentation as types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation } from '../types/SemanticCalculatedDimensionInputRepresentation';
|
|
6
7
|
import { SemanticCalculatedMeasurementInputRepresentation as types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation } from '../types/SemanticCalculatedMeasurementInputRepresentation';
|
|
7
8
|
import { SemanticDataObjectInputRepresentation as types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation } from '../types/SemanticDataObjectInputRepresentation';
|
|
@@ -28,6 +29,7 @@ export interface PatchSemanticModelConfig {
|
|
|
28
29
|
sourceCreationName?: string;
|
|
29
30
|
baseModels?: Array<types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation>;
|
|
30
31
|
externalConnections?: Array<types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
32
|
+
fieldsOverrides?: Array<types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
31
33
|
semanticCalculatedDimensions?: Array<types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation>;
|
|
32
34
|
semanticCalculatedMeasurements?: Array<types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation>;
|
|
33
35
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsByModelApiNameOrId.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SemanticBaseModelInputRepresentation as types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation } from '../types/SemanticBaseModelInputRepresentation';
|
|
2
2
|
import { SemanticModelExternalConnectionInputRepresentation as types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation } from '../types/SemanticModelExternalConnectionInputRepresentation';
|
|
3
|
+
import { SemanticOverrideInputRepresentation as types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation } from '../types/SemanticOverrideInputRepresentation';
|
|
3
4
|
import { SemanticCalculatedDimensionInputRepresentation as types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation } from '../types/SemanticCalculatedDimensionInputRepresentation';
|
|
4
5
|
import { SemanticCalculatedMeasurementInputRepresentation as types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation } from '../types/SemanticCalculatedMeasurementInputRepresentation';
|
|
5
6
|
import { SemanticDataObjectInputRepresentation as types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation } from '../types/SemanticDataObjectInputRepresentation';
|
|
@@ -26,6 +27,7 @@ export interface ResourceRequestConfig {
|
|
|
26
27
|
sourceCreationName?: string;
|
|
27
28
|
baseModels?: Array<types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation>;
|
|
28
29
|
externalConnections?: Array<types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
30
|
+
fieldsOverrides?: Array<types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
29
31
|
semanticCalculatedDimensions?: Array<types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation>;
|
|
30
32
|
semanticCalculatedMeasurements?: Array<types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation>;
|
|
31
33
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SemanticBaseModelInputRepresentation as types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation } from '../types/SemanticBaseModelInputRepresentation';
|
|
2
2
|
import { SemanticModelExternalConnectionInputRepresentation as types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation } from '../types/SemanticModelExternalConnectionInputRepresentation';
|
|
3
|
+
import { SemanticOverrideInputRepresentation as types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation } from '../types/SemanticOverrideInputRepresentation';
|
|
3
4
|
import { SemanticCalculatedDimensionInputRepresentation as types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation } from '../types/SemanticCalculatedDimensionInputRepresentation';
|
|
4
5
|
import { SemanticCalculatedMeasurementInputRepresentation as types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation } from '../types/SemanticCalculatedMeasurementInputRepresentation';
|
|
5
6
|
import { SemanticDataObjectInputRepresentation as types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation } from '../types/SemanticDataObjectInputRepresentation';
|
|
@@ -23,6 +24,7 @@ export interface ResourceRequestConfig {
|
|
|
23
24
|
sourceCreationName?: string;
|
|
24
25
|
baseModels?: Array<types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation>;
|
|
25
26
|
externalConnections?: Array<types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
27
|
+
fieldsOverrides?: Array<types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
26
28
|
semanticCalculatedDimensions?: Array<types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation>;
|
|
27
29
|
semanticCalculatedMeasurements?: Array<types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation>;
|
|
28
30
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
@@ -22,6 +22,7 @@ export interface ResourceRequestConfig {
|
|
|
22
22
|
expression?: string;
|
|
23
23
|
filterLogic?: string;
|
|
24
24
|
filters?: Array<types_SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
25
|
+
isOverrideBase?: boolean;
|
|
25
26
|
syntax?: string;
|
|
26
27
|
totalAggregationType?: string;
|
|
27
28
|
};
|
package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsByModelApiNameOrId.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SemanticBaseModelInputRepresentation as types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation } from '../types/SemanticBaseModelInputRepresentation';
|
|
2
2
|
import { SemanticModelExternalConnectionInputRepresentation as types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation } from '../types/SemanticModelExternalConnectionInputRepresentation';
|
|
3
|
+
import { SemanticOverrideInputRepresentation as types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation } from '../types/SemanticOverrideInputRepresentation';
|
|
3
4
|
import { SemanticCalculatedDimensionInputRepresentation as types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation } from '../types/SemanticCalculatedDimensionInputRepresentation';
|
|
4
5
|
import { SemanticCalculatedMeasurementInputRepresentation as types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation } from '../types/SemanticCalculatedMeasurementInputRepresentation';
|
|
5
6
|
import { SemanticDataObjectInputRepresentation as types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation } from '../types/SemanticDataObjectInputRepresentation';
|
|
@@ -26,6 +27,7 @@ export interface ResourceRequestConfig {
|
|
|
26
27
|
sourceCreationName?: string;
|
|
27
28
|
baseModels?: Array<types_SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation>;
|
|
28
29
|
externalConnections?: Array<types_SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
30
|
+
fieldsOverrides?: Array<types_SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
29
31
|
semanticCalculatedDimensions?: Array<types_SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation>;
|
|
30
32
|
semanticCalculatedMeasurements?: Array<types_SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation>;
|
|
31
33
|
semanticDataObjects?: Array<types_SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation>;
|
|
@@ -23,6 +23,7 @@ export interface ResourceRequestConfig {
|
|
|
23
23
|
expression?: string;
|
|
24
24
|
filterLogic?: string;
|
|
25
25
|
filters?: Array<types_SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
26
|
+
isOverrideBase?: boolean;
|
|
26
27
|
syntax?: string;
|
|
27
28
|
totalAggregationType?: string;
|
|
28
29
|
};
|
|
@@ -23,6 +23,7 @@ export interface ResourceRequestConfig {
|
|
|
23
23
|
expression?: string;
|
|
24
24
|
filterLogic?: string;
|
|
25
25
|
filters?: Array<types_SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
26
|
+
isOverrideBase?: boolean;
|
|
26
27
|
syntax?: string;
|
|
27
28
|
totalAggregationType?: string;
|
|
28
29
|
};
|
package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionInputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticFilterInputRepresentation as SemanticFilterInputRepresentation_SemanticFilterInputRepresentation } from './SemanticFilterInputRepresentation';
|
|
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 = "25cae40ad4f7b3a3a3c42e6b252fc368";
|
|
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: SemanticCalculatedDimensionInputRepresentation, existing: SemanticCalculatedDimensionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticCalculatedDimensionInputRepresentationNormalized;
|
|
@@ -31,6 +31,8 @@ export interface SemanticCalculatedDimensionInputRepresentationNormalized {
|
|
|
31
31
|
filterLogic?: string;
|
|
32
32
|
/** A list of filters to be used to create filter logic. */
|
|
33
33
|
filters?: Array<SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
34
|
+
/** 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. */
|
|
35
|
+
isOverrideBase?: boolean;
|
|
34
36
|
/** Indicates whether the Semantic Calculated Dimension is visible in the consumption layer (true) or not (false). True is the default. */
|
|
35
37
|
isVisible?: boolean;
|
|
36
38
|
/** The display name of the semantic entity. Optional, if not specified will use the same as the api name but instead of “_” will use spaces. */
|
|
@@ -57,6 +59,7 @@ export interface SemanticCalculatedDimensionInputRepresentation {
|
|
|
57
59
|
expression?: string;
|
|
58
60
|
filterLogic?: string;
|
|
59
61
|
filters?: Array<SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
62
|
+
isOverrideBase?: boolean;
|
|
60
63
|
isVisible?: boolean;
|
|
61
64
|
label?: string;
|
|
62
65
|
semanticDataType?: 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 = "8e79a20925f9ec85025ffe505523c74c";
|
|
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 {
|
|
@@ -54,6 +54,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
|
|
|
54
54
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
55
55
|
/** The object ID of the semantic entity. */
|
|
56
56
|
id: string;
|
|
57
|
+
/** 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
|
+
isOverrideBase?: boolean;
|
|
57
59
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
58
60
|
isVisible?: boolean;
|
|
59
61
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -93,6 +95,7 @@ export interface SemanticCalculatedDimensionOutputRepresentation {
|
|
|
93
95
|
filterLogic?: string;
|
|
94
96
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
95
97
|
id: string;
|
|
98
|
+
isOverrideBase?: boolean;
|
|
96
99
|
isVisible?: boolean;
|
|
97
100
|
label?: string;
|
|
98
101
|
lastModifiedBy?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SemanticFilterInputRepresentation as SemanticFilterInputRepresentation_SemanticFilterInputRepresentation } from './SemanticFilterInputRepresentation';
|
|
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 = "61d2ecf8a791673c74938fc720dbbee2";
|
|
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: SemanticCalculatedMeasurementInputRepresentation, existing: SemanticCalculatedMeasurementInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticCalculatedMeasurementInputRepresentationNormalized;
|
|
@@ -35,6 +35,8 @@ export interface SemanticCalculatedMeasurementInputRepresentationNormalized {
|
|
|
35
35
|
filterLogic?: string;
|
|
36
36
|
/** A list of filters to be used to create filter logic. */
|
|
37
37
|
filters?: Array<SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
38
|
+
/** 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. */
|
|
39
|
+
isOverrideBase?: boolean;
|
|
38
40
|
/** Indicates whether the Semantic Calculated Dimension is visible in the consumption layer (true) or not (false). True is the default. */
|
|
39
41
|
isVisible?: boolean;
|
|
40
42
|
/** The display name of the semantic entity. Optional, if not specified will use the same as the api name but instead of “_” will use spaces. */
|
|
@@ -69,6 +71,7 @@ export interface SemanticCalculatedMeasurementInputRepresentation {
|
|
|
69
71
|
expression?: string;
|
|
70
72
|
filterLogic?: string;
|
|
71
73
|
filters?: Array<SemanticFilterInputRepresentation_SemanticFilterInputRepresentation>;
|
|
74
|
+
isOverrideBase?: boolean;
|
|
72
75
|
isVisible?: boolean;
|
|
73
76
|
label?: string;
|
|
74
77
|
semanticDataType?: 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 = "bc21c46456a2024253da5ae96ccf7dfe";
|
|
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 {
|
|
@@ -60,6 +60,8 @@ export interface SemanticCalculatedMeasurementOutputRepresentationNormalized {
|
|
|
60
60
|
id: string;
|
|
61
61
|
/** Indicates if the measurement can be aggregated or not */
|
|
62
62
|
isAggregatable?: boolean;
|
|
63
|
+
/** 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
|
+
isOverrideBase?: boolean;
|
|
63
65
|
/** Indicates whether the Semantic Data Object Field is visible in the consumption layer (true) or not (false). True is the default. */
|
|
64
66
|
isVisible?: boolean;
|
|
65
67
|
/** The display name of the semantic entity to be used in the ui. */
|
|
@@ -108,6 +110,7 @@ export interface SemanticCalculatedMeasurementOutputRepresentation {
|
|
|
108
110
|
filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
|
|
109
111
|
id: string;
|
|
110
112
|
isAggregatable?: boolean;
|
|
113
|
+
isOverrideBase?: boolean;
|
|
111
114
|
isVisible?: boolean;
|
|
112
115
|
label?: string;
|
|
113
116
|
lastModifiedBy?: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SemanticBaseModelInputRepresentation as SemanticBaseModelInputRepresentation_SemanticBaseModelInputRepresentation } from './SemanticBaseModelInputRepresentation';
|
|
2
2
|
import { SemanticModelExternalConnectionInputRepresentation as SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation } from './SemanticModelExternalConnectionInputRepresentation';
|
|
3
|
+
import { SemanticOverrideInputRepresentation as SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation } from './SemanticOverrideInputRepresentation';
|
|
3
4
|
import { SemanticCalculatedDimensionInputRepresentation as SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation } from './SemanticCalculatedDimensionInputRepresentation';
|
|
4
5
|
import { SemanticCalculatedMeasurementInputRepresentation as SemanticCalculatedMeasurementInputRepresentation_SemanticCalculatedMeasurementInputRepresentation } from './SemanticCalculatedMeasurementInputRepresentation';
|
|
5
6
|
import { SemanticDataObjectInputRepresentation as SemanticDataObjectInputRepresentation_SemanticDataObjectInputRepresentation } from './SemanticDataObjectInputRepresentation';
|
|
@@ -9,7 +10,7 @@ import { SemanticMetricInputRepresentation as SemanticMetricInputRepresentation_
|
|
|
9
10
|
import { SemanticParameterInputRepresentation as SemanticParameterInputRepresentation_SemanticParameterInputRepresentation } from './SemanticParameterInputRepresentation';
|
|
10
11
|
import { SemanticRelationshipInputRepresentation as SemanticRelationshipInputRepresentation_SemanticRelationshipInputRepresentation } from './SemanticRelationshipInputRepresentation';
|
|
11
12
|
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';
|
|
12
|
-
export declare const VERSION = "
|
|
13
|
+
export declare const VERSION = "28431737045eb03295c5f4ec140bf338";
|
|
13
14
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
14
15
|
export declare const RepresentationType: string;
|
|
15
16
|
export declare function normalize(input: SemanticModelInputRepresentation, existing: SemanticModelInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticModelInputRepresentationNormalized;
|
|
@@ -38,6 +39,8 @@ export interface SemanticModelInputRepresentationNormalized {
|
|
|
38
39
|
description?: string;
|
|
39
40
|
/** The semantic external connections belonging to this model. */
|
|
40
41
|
externalConnections?: Array<SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
42
|
+
/** Semantic fields overrides within the model. */
|
|
43
|
+
fieldsOverrides?: Array<SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
41
44
|
/** The display name of the semantic entity. Optional, if not specified will use the same as the api name but instead of “_” will use spaces. */
|
|
42
45
|
label?: string;
|
|
43
46
|
/** Required. The type of join performed between the defined Data Cloud Objects. Valid values are AUTO, LEFT, RIGHT, FULL, and INNER. */
|
|
@@ -77,6 +80,7 @@ export interface SemanticModelInputRepresentation {
|
|
|
77
80
|
dataspace?: string;
|
|
78
81
|
description?: string;
|
|
79
82
|
externalConnections?: Array<SemanticModelExternalConnectionInputRepresentation_SemanticModelExternalConnectionInputRepresentation>;
|
|
83
|
+
fieldsOverrides?: Array<SemanticOverrideInputRepresentation_SemanticOverrideInputRepresentation>;
|
|
80
84
|
label?: string;
|
|
81
85
|
queryUnrelatedDataObjects?: string;
|
|
82
86
|
semanticCalculatedDimensions?: Array<SemanticCalculatedDimensionInputRepresentation_SemanticCalculatedDimensionInputRepresentation>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SemanticBaseModelOutputRepresentation as SemanticBaseModelOutputRepresentation_SemanticBaseModelOutputRepresentation } from './SemanticBaseModelOutputRepresentation';
|
|
2
2
|
import { SemanticModelExternalConnectionOutputRepresentation as SemanticModelExternalConnectionOutputRepresentation_SemanticModelExternalConnectionOutputRepresentation } from './SemanticModelExternalConnectionOutputRepresentation';
|
|
3
|
+
import { SemanticOverrideOutputRepresentation as SemanticOverrideOutputRepresentation_SemanticOverrideOutputRepresentation } from './SemanticOverrideOutputRepresentation';
|
|
3
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
5
|
import { SemanticCalculatedDimensionOutputRepresentation as SemanticCalculatedDimensionOutputRepresentation_SemanticCalculatedDimensionOutputRepresentation } from './SemanticCalculatedDimensionOutputRepresentation';
|
|
5
6
|
import { SemanticCalculatedMeasurementOutputRepresentation as SemanticCalculatedMeasurementOutputRepresentation_SemanticCalculatedMeasurementOutputRepresentation } from './SemanticCalculatedMeasurementOutputRepresentation';
|
|
@@ -9,7 +10,7 @@ import { SemanticLogicalViewOutputRepresentation as SemanticLogicalViewOutputRep
|
|
|
9
10
|
import { SemanticMetricOutputRepresentation as SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation } from './SemanticMetricOutputRepresentation';
|
|
10
11
|
import { SemanticParameterOutputRepresentation as SemanticParameterOutputRepresentation_SemanticParameterOutputRepresentation } from './SemanticParameterOutputRepresentation';
|
|
11
12
|
import { SemanticRelationshipOutputRepresentation as SemanticRelationshipOutputRepresentation_SemanticRelationshipOutputRepresentation } from './SemanticRelationshipOutputRepresentation';
|
|
12
|
-
export declare const VERSION = "
|
|
13
|
+
export declare const VERSION = "384950eda90c1492434fc4519368df85";
|
|
13
14
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
14
15
|
export declare const RepresentationType: string;
|
|
15
16
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -78,6 +79,8 @@ export interface SemanticModelOutputRepresentationNormalized {
|
|
|
78
79
|
description?: string;
|
|
79
80
|
/** The semantic external connections belonging to this model. */
|
|
80
81
|
externalConnections?: Array<SemanticModelExternalConnectionOutputRepresentation_SemanticModelExternalConnectionOutputRepresentation>;
|
|
82
|
+
/** The semantic overrides belonging to this model. */
|
|
83
|
+
fieldsOverrides?: Array<SemanticOverrideOutputRepresentation_SemanticOverrideOutputRepresentation>;
|
|
81
84
|
/** The object ID of the semantic entity. */
|
|
82
85
|
id: string;
|
|
83
86
|
/** Is the model locked for edit/ delete. */
|
|
@@ -141,6 +144,7 @@ export interface SemanticModelOutputRepresentation {
|
|
|
141
144
|
dataspace: string;
|
|
142
145
|
description?: string;
|
|
143
146
|
externalConnections?: Array<SemanticModelExternalConnectionOutputRepresentation_SemanticModelExternalConnectionOutputRepresentation>;
|
|
147
|
+
fieldsOverrides?: Array<SemanticOverrideOutputRepresentation_SemanticOverrideOutputRepresentation>;
|
|
144
148
|
id: string;
|
|
145
149
|
isLocked?: boolean;
|
|
146
150
|
label?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-semantic-authoring",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.353.0",
|
|
4
4
|
"description": "Semantic Authoring",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-semantic-authoring.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.353.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.353.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|