@salesforce/lds-adapters-cdp-semantic-authoring 1.332.0-dev7 → 1.332.0-dev9
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 +445 -316
- 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 +415 -286
- package/src/raml/api.raml +34 -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
|