@salesforce/lds-adapters-cdp-semantic-authoring 1.309.0 → 1.311.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 +1929 -256
- package/dist/es/es2018/types/src/generated/adapters/createSemanticModel.d.ts +41 -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 +2 -1
- package/dist/es/es2018/types/src/generated/types/SemanticTimeRangeInputRepresentation.d.ts +1 -7
- package/dist/es/es2018/types/src/generated/types/SemanticTimeRangeOutputRepresentation.d.ts +1 -7
- package/package.json +3 -3
- package/sfdc/index.js +5136 -3460
- package/src/raml/api.raml +8 -20
- package/src/raml/luvio.raml +3 -0
package/src/raml/api.raml
CHANGED
|
@@ -54,12 +54,16 @@ types:
|
|
|
54
54
|
description: The type of the time range.
|
|
55
55
|
type: string
|
|
56
56
|
enum:
|
|
57
|
-
-
|
|
58
|
-
-
|
|
57
|
+
- Yesterday
|
|
58
|
+
- Today
|
|
59
59
|
- LastWeek
|
|
60
60
|
- LastYear
|
|
61
|
-
-
|
|
62
|
-
-
|
|
61
|
+
- ThisYear
|
|
62
|
+
- ThisWeek
|
|
63
|
+
- ThisQuarter
|
|
64
|
+
- LastQuarter
|
|
65
|
+
- ThisMonth
|
|
66
|
+
- LastMonth
|
|
63
67
|
SemanticMetricTimeGrainTypeEnum:
|
|
64
68
|
description: The time grain values allowed to be used.
|
|
65
69
|
type: string
|
|
@@ -2916,14 +2920,6 @@ types:
|
|
|
2916
2920
|
description: Input representation for specifying a semantic time range
|
|
2917
2921
|
type: object
|
|
2918
2922
|
properties:
|
|
2919
|
-
customerEndDate:
|
|
2920
|
-
description: The end date of the customer-defined time range.
|
|
2921
|
-
type: string
|
|
2922
|
-
required: false
|
|
2923
|
-
customerStartDate:
|
|
2924
|
-
description: The start date of the customer-defined time range.
|
|
2925
|
-
type: string
|
|
2926
|
-
required: false
|
|
2927
2923
|
timeRangeType:
|
|
2928
2924
|
description: The type of the time range.
|
|
2929
2925
|
type: TimeRangeTypeEnum
|
|
@@ -2933,14 +2929,6 @@ types:
|
|
|
2933
2929
|
type: object
|
|
2934
2930
|
additionalProperties: true
|
|
2935
2931
|
properties:
|
|
2936
|
-
customerEndDate:
|
|
2937
|
-
description: The end date of the customer-defined time range.
|
|
2938
|
-
type: string
|
|
2939
|
-
required: false
|
|
2940
|
-
customerStartDate:
|
|
2941
|
-
description: The start date of the customer-defined time range.
|
|
2942
|
-
type: string
|
|
2943
|
-
required: false
|
|
2944
2932
|
timeRangeType:
|
|
2945
2933
|
description: The type of the time range.
|
|
2946
2934
|
type: TimeRangeTypeEnum
|
package/src/raml/luvio.raml
CHANGED
|
@@ -58,6 +58,9 @@ types:
|
|
|
58
58
|
get:
|
|
59
59
|
(luvio.adapter):
|
|
60
60
|
name: getSemanticModels # This should correspond to the methodName in the signature var of @ConnectResourceMethod
|
|
61
|
+
post:
|
|
62
|
+
(luvio.adapter):
|
|
63
|
+
name: createSemanticModel
|
|
61
64
|
|
|
62
65
|
/ssot/semantic/sub-metrics/{subMetricIds}:
|
|
63
66
|
get:
|