@salesforce/lds-adapters-cdp-semantic-authoring 1.332.0-dev6 → 1.332.0-dev8
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 +1245 -665
- package/dist/es/es2018/types/src/generated/adapters/getLeafDependenciesByTypes.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getSemanticSubMetricsById.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsDependenciesByModelApiNameOrId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticSubMetricsBySubMetricIds.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsParametersByModelApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsParametersByModelApiNameOrIdAndParameterApiNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SemanticParameterInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SemanticParameterListValueInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/SemanticParameterListValueOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +5 -1
- package/package.json +3 -3
- package/sfdc/index.js +1190 -599
- package/src/raml/api.raml +71 -0
- package/src/raml/luvio.raml +4 -0
package/src/raml/api.raml
CHANGED
|
@@ -2856,6 +2856,12 @@ types:
|
|
|
2856
2856
|
description: The API name of the semantic entity.
|
|
2857
2857
|
type: string
|
|
2858
2858
|
required: false
|
|
2859
|
+
allowedValues:
|
|
2860
|
+
description: The list allowedValues of the semantic parameter.
|
|
2861
|
+
type: array
|
|
2862
|
+
required: false
|
|
2863
|
+
items:
|
|
2864
|
+
type: object
|
|
2859
2865
|
description:
|
|
2860
2866
|
description: An optional description of the semantic entity.
|
|
2861
2867
|
type: string
|
|
@@ -2902,6 +2908,12 @@ types:
|
|
|
2902
2908
|
apiName:
|
|
2903
2909
|
description: The API name of the semantic entity.
|
|
2904
2910
|
type: string
|
|
2911
|
+
allowedValues:
|
|
2912
|
+
description: The allowed list values of the semantic parameter.
|
|
2913
|
+
type: array
|
|
2914
|
+
required: false
|
|
2915
|
+
items:
|
|
2916
|
+
type: SemanticParameterListValueOutputRepresentation
|
|
2905
2917
|
baseModelApiName:
|
|
2906
2918
|
description: The origin model of the semantic entity.
|
|
2907
2919
|
type: string
|
|
@@ -2965,6 +2977,28 @@ types:
|
|
|
2965
2977
|
required: false
|
|
2966
2978
|
items:
|
|
2967
2979
|
type: string
|
|
2980
|
+
SemanticParameterListValueInputRepresentation:
|
|
2981
|
+
description: Input representation of an allowed list value for a semantic parameter .
|
|
2982
|
+
type: object
|
|
2983
|
+
properties:
|
|
2984
|
+
displayName:
|
|
2985
|
+
description: The display name (Display As) of the allowed parameter value.
|
|
2986
|
+
type: string
|
|
2987
|
+
value:
|
|
2988
|
+
description: The allowed value in the list of parameter allowed values.
|
|
2989
|
+
type: string
|
|
2990
|
+
SemanticParameterListValueOutputRepresentation:
|
|
2991
|
+
description: Output representation of an allowed list value for a semantic parameter.
|
|
2992
|
+
type: object
|
|
2993
|
+
properties:
|
|
2994
|
+
displayName:
|
|
2995
|
+
description: The display name (Display As) of the allowed parameter value.
|
|
2996
|
+
type: string
|
|
2997
|
+
required: false
|
|
2998
|
+
value:
|
|
2999
|
+
description: The allowed value in the list of parameter allowed values.
|
|
3000
|
+
type: string
|
|
3001
|
+
required: false
|
|
2968
3002
|
SemanticRelationshipCollectionOutputRepresentation:
|
|
2969
3003
|
description: Semantic relationship collection representation.
|
|
2970
3004
|
type: object
|
|
@@ -4195,6 +4229,34 @@ types:
|
|
|
4195
4229
|
modelApiNameOrId:
|
|
4196
4230
|
type: string
|
|
4197
4231
|
required: true
|
|
4232
|
+
/dependencies:
|
|
4233
|
+
get:
|
|
4234
|
+
displayName: getSemanticDependencyCollection
|
|
4235
|
+
description: Obtains the dependencies of specific Semantic Definition types
|
|
4236
|
+
responses:
|
|
4237
|
+
'200':
|
|
4238
|
+
description: Success
|
|
4239
|
+
body:
|
|
4240
|
+
application/json:
|
|
4241
|
+
type: SemanticDependencyCollectionOutputRepresentation
|
|
4242
|
+
queryParameters:
|
|
4243
|
+
types:
|
|
4244
|
+
description: Types of semantic objects to get dependencies for
|
|
4245
|
+
type: array
|
|
4246
|
+
required: false
|
|
4247
|
+
items:
|
|
4248
|
+
type: string
|
|
4249
|
+
enum:
|
|
4250
|
+
- CalculatedDimension
|
|
4251
|
+
- CalculatedMeasurement
|
|
4252
|
+
- DataObject
|
|
4253
|
+
- Grouping
|
|
4254
|
+
- LogicalView
|
|
4255
|
+
- MappedField
|
|
4256
|
+
- Metric
|
|
4257
|
+
- Parameter
|
|
4258
|
+
- Relationship
|
|
4259
|
+
(oas-collectionFormat): csv
|
|
4198
4260
|
/groupings:
|
|
4199
4261
|
get:
|
|
4200
4262
|
displayName: getSemanticGroupingCollection
|
|
@@ -4823,6 +4885,15 @@ types:
|
|
|
4823
4885
|
body:
|
|
4824
4886
|
application/json:
|
|
4825
4887
|
type: SemanticSubMetricCollectionOutputRepresentation
|
|
4888
|
+
queryParameters:
|
|
4889
|
+
sortBy:
|
|
4890
|
+
description: Represents the field to sort by.
|
|
4891
|
+
type: string
|
|
4892
|
+
required: false
|
|
4893
|
+
sortOrder:
|
|
4894
|
+
description: Sort order of the Semantic Calculated Dimension. Valid values are Ascending, Descending and None.
|
|
4895
|
+
type: SemanticSortOrderEnum
|
|
4896
|
+
required: false
|
|
4826
4897
|
uriParameters:
|
|
4827
4898
|
subMetricIds:
|
|
4828
4899
|
type: string
|
package/src/raml/luvio.raml
CHANGED
|
@@ -113,6 +113,10 @@ types:
|
|
|
113
113
|
name: urlParams.subMetricNameOrId
|
|
114
114
|
(luvio.adapter):
|
|
115
115
|
name: deleteSemanticSubMetric
|
|
116
|
+
/dependencies:
|
|
117
|
+
get:
|
|
118
|
+
(luvio.adapter):
|
|
119
|
+
name: getLeafDependenciesByTypes
|
|
116
120
|
/sub-metrics/{subMetricNameOrId}/goal:
|
|
117
121
|
patch:
|
|
118
122
|
(luvio.adapter):
|