@salesforce/lds-adapters-cdp-semantic-authoring 1.352.0 → 1.353.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/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
package/src/raml/api.raml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
securedBy:
|
|
3
3
|
- OAuth2
|
|
4
4
|
title: Salesforce Connect API
|
|
5
|
-
version: '
|
|
5
|
+
version: '64.0'
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
@@ -192,9 +192,9 @@ types:
|
|
|
192
192
|
- DataType
|
|
193
193
|
- DecimalPlace
|
|
194
194
|
- Description
|
|
195
|
-
- Directionality
|
|
196
195
|
- DisplayCategory
|
|
197
196
|
- DisplayName
|
|
197
|
+
- Sentiment
|
|
198
198
|
- SortOrder
|
|
199
199
|
- Visibility
|
|
200
200
|
SemanticFilterOperatorTypeEnum:
|
|
@@ -583,6 +583,10 @@ types:
|
|
|
583
583
|
items:
|
|
584
584
|
type: SemanticFilterInputRepresentation
|
|
585
585
|
required: false
|
|
586
|
+
isOverrideBase:
|
|
587
|
+
description: 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.
|
|
588
|
+
type: boolean
|
|
589
|
+
required: false
|
|
586
590
|
syntax:
|
|
587
591
|
description: The syntax of the semantic expression.
|
|
588
592
|
type: SemanticExpressionSyntaxTypeEnum
|
|
@@ -674,6 +678,10 @@ types:
|
|
|
674
678
|
required: false
|
|
675
679
|
items:
|
|
676
680
|
type: SemanticFilterOutputRepresentation
|
|
681
|
+
isOverrideBase:
|
|
682
|
+
description: 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.
|
|
683
|
+
type: boolean
|
|
684
|
+
required: false
|
|
677
685
|
syntax:
|
|
678
686
|
description: The syntax of the semantic expression.
|
|
679
687
|
type: SemanticExpressionSyntaxTypeEnum
|
|
@@ -763,6 +771,10 @@ types:
|
|
|
763
771
|
items:
|
|
764
772
|
type: SemanticFilterInputRepresentation
|
|
765
773
|
required: false
|
|
774
|
+
isOverrideBase:
|
|
775
|
+
description: 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.
|
|
776
|
+
type: boolean
|
|
777
|
+
required: false
|
|
766
778
|
syntax:
|
|
767
779
|
description: The syntax of the semantic expression.
|
|
768
780
|
type: SemanticExpressionSyntaxTypeEnum
|
|
@@ -878,6 +890,10 @@ types:
|
|
|
878
890
|
required: false
|
|
879
891
|
items:
|
|
880
892
|
type: SemanticFilterOutputRepresentation
|
|
893
|
+
isOverrideBase:
|
|
894
|
+
description: 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.
|
|
895
|
+
type: boolean
|
|
896
|
+
required: false
|
|
881
897
|
syntax:
|
|
882
898
|
description: The syntax of the semantic expression.
|
|
883
899
|
type: SemanticExpressionSyntaxTypeEnum
|
|
@@ -2598,6 +2614,12 @@ types:
|
|
|
2598
2614
|
items:
|
|
2599
2615
|
type: SemanticModelExternalConnectionInputRepresentation
|
|
2600
2616
|
required: false
|
|
2617
|
+
fieldsOverrides:
|
|
2618
|
+
description: Semantic fields overrides within the model.
|
|
2619
|
+
type: array
|
|
2620
|
+
items:
|
|
2621
|
+
type: SemanticOverrideInputRepresentation
|
|
2622
|
+
required: false
|
|
2601
2623
|
semanticCalculatedDimensions:
|
|
2602
2624
|
description: Semantic calculated dimensions within the model.
|
|
2603
2625
|
type: array
|
|
@@ -2800,6 +2822,12 @@ types:
|
|
|
2800
2822
|
required: false
|
|
2801
2823
|
items:
|
|
2802
2824
|
type: SemanticModelExternalConnectionOutputRepresentation
|
|
2825
|
+
fieldsOverrides:
|
|
2826
|
+
description: The semantic overrides belonging to this model.
|
|
2827
|
+
type: array
|
|
2828
|
+
required: false
|
|
2829
|
+
items:
|
|
2830
|
+
type: SemanticOverrideOutputRepresentation
|
|
2803
2831
|
semanticCalculatedDimensions:
|
|
2804
2832
|
description: The semantic calculated dimensions belonging to this model.
|
|
2805
2833
|
type: array
|