@salesforce/lds-adapters-cdp-semantic-authoring 1.314.0 → 1.315.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 +5556 -5424
- package/dist/es/es2018/types/src/generated/adapters/getSemanticMetricsByIds.d.ts +27 -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/getSsotSemanticMetricsByMetricIds.d.ts +15 -0
- package/package.json +3 -3
- package/sfdc/index.js +376 -233
- package/src/raml/api.raml +14 -0
- package/src/raml/luvio.raml +5 -0
package/src/raml/api.raml
CHANGED
|
@@ -3060,6 +3060,20 @@ types:
|
|
|
3060
3060
|
description: Indicates whether the API name is valid
|
|
3061
3061
|
type: boolean
|
|
3062
3062
|
/ssot/semantic:
|
|
3063
|
+
/metrics/{metricIds}:
|
|
3064
|
+
get:
|
|
3065
|
+
displayName: getSemanticMetricsWithoutModel
|
|
3066
|
+
description: get metrics by ids
|
|
3067
|
+
responses:
|
|
3068
|
+
'200':
|
|
3069
|
+
description: Success
|
|
3070
|
+
body:
|
|
3071
|
+
application/json:
|
|
3072
|
+
type: SemanticMetricCollectionOutputRepresentation
|
|
3073
|
+
uriParameters:
|
|
3074
|
+
metricIds:
|
|
3075
|
+
type: string
|
|
3076
|
+
required: true
|
|
3063
3077
|
/models:
|
|
3064
3078
|
delete:
|
|
3065
3079
|
displayName: deleteSemanticModelCollection
|
package/src/raml/luvio.raml
CHANGED