@salesforce/lds-adapters-cdp-semantic-authoring 1.332.0-dev1 → 1.332.0-dev11

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.
Files changed (39) hide show
  1. package/dist/es/es2018/cdp-semantic-authoring.js +1798 -959
  2. package/dist/es/es2018/types/src/generated/adapters/deleteGoalFromSubMetric.d.ts +15 -0
  3. package/dist/es/es2018/types/src/generated/adapters/getLeafDependenciesByTypes.d.ts +28 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getSemanticSubMetrics.d.ts +1 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getSemanticSubMetricsById.d.ts +2 -0
  6. package/dist/es/es2018/types/src/generated/adapters/patchSemanticMetricGoal.d.ts +19 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
  8. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -1
  9. package/dist/es/es2018/types/src/generated/resources/deleteSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +1 -0
  10. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsDependenciesByModelApiNameOrId.d.ts +18 -0
  11. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsByModelApiNameOrId.d.ts +3 -0
  12. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +4 -4
  13. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticSubMetricsBySubMetricIds.d.ts +4 -0
  14. package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -1
  15. package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +3 -5
  16. package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsLogicalViewsByModelApiNameOrId.d.ts +1 -1
  17. package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsParametersByModelApiNameOrId.d.ts +1 -0
  18. package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsLogicalViewsByLogicalViewApiNameOrIdAndModelApiNameOrId.d.ts +1 -1
  19. package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsParametersByModelApiNameOrIdAndParameterApiNameOrId.d.ts +1 -0
  20. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +4 -1
  21. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +4 -1
  22. package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionInputRepresentation.d.ts +43 -0
  23. package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionOutputRepresentation.d.ts +43 -0
  24. package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewInputRepresentation.d.ts +3 -3
  25. package/dist/es/es2018/types/src/generated/types/SemanticLogicalViewOutputRepresentation.d.ts +3 -3
  26. package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalInputRepresentation.d.ts +8 -12
  27. package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalOutputRepresentation.d.ts +8 -12
  28. package/dist/es/es2018/types/src/generated/types/SemanticParameterInputRepresentation.d.ts +4 -1
  29. package/dist/es/es2018/types/src/generated/types/SemanticParameterListValueInputRepresentation.d.ts +31 -0
  30. package/dist/es/es2018/types/src/generated/types/SemanticParameterListValueOutputRepresentation.d.ts +31 -0
  31. package/dist/es/es2018/types/src/generated/types/SemanticParameterOutputRepresentation.d.ts +5 -1
  32. package/package.json +3 -3
  33. package/sfdc/index.js +1788 -932
  34. package/src/raml/api.raml +211 -61
  35. package/src/raml/luvio.raml +13 -0
  36. package/dist/es/es2018/types/src/generated/types/SemanticGoalDateRangeInputRepresentation.d.ts +0 -31
  37. package/dist/es/es2018/types/src/generated/types/SemanticGoalDateRangeOutputRepresentation.d.ts +0 -31
  38. package/dist/es/es2018/types/src/generated/types/SemanticGoalValueInputRepresentation.d.ts +0 -28
  39. package/dist/es/es2018/types/src/generated/types/SemanticGoalValueOutputRepresentation.d.ts +0 -28
package/src/raml/api.raml CHANGED
@@ -108,7 +108,7 @@ types:
108
108
  description: The semantic view types enum, relevant only for logicalView created by sql
109
109
  type: string
110
110
  enum:
111
- - CustomSql
111
+ - CustomSQL
112
112
  - HardJoin
113
113
  - Union
114
114
  SemanticDataTypeEnum:
@@ -229,13 +229,50 @@ types:
229
229
  - LessThanOrEqual
230
230
  - NotEquals
231
231
  - NotEqualsIgnoreCase
232
- SemanticGoalTypeEnum:
233
- description: The Type property of the semantic metric goal.
232
+ SemanticGeoRoleEnum:
233
+ description: The geoRole type of the referenced dimension field.
234
234
  type: string
235
235
  enum:
236
- - AtLeast
237
- - AtMost
238
- - Exact
236
+ - Airport
237
+ - AreaCode
238
+ - CbsaMsa
239
+ - City
240
+ - Congressional
241
+ - Country
242
+ - District
243
+ - Latitude
244
+ - Longitude
245
+ - Nuts
246
+ - Province
247
+ - Region
248
+ - State
249
+ - ZipCode
250
+ SemanticCalculatedFieldDefaultAggregationTypeEnum:
251
+ description: The semantic calculated field default aggregation type
252
+ type: string
253
+ enum:
254
+ - Auto
255
+ - Average
256
+ - Count
257
+ - CountDistinct
258
+ - First
259
+ - Last
260
+ - Max
261
+ - Median
262
+ - Min
263
+ - None
264
+ - StdDev
265
+ - StdDevP
266
+ - Sum
267
+ - UserAgg
268
+ - Var
269
+ - VarP
270
+ SemanticCalculatedFieldDataRoleEnum:
271
+ description: The semantic calculated field data role
272
+ type: string
273
+ enum:
274
+ - Dimension
275
+ - Measurement
239
276
  SemanticDirectionalityTypeEnum:
240
277
  description: Indicates the directionality of the Semantic Calculated Measurement by establishing whether an upward or a downward trend is seen as positive (Up) or negative (Down).
241
278
  type: string
@@ -301,9 +338,21 @@ types:
301
338
  type: string
302
339
  enum:
303
340
  - Cio
304
- - CustomSql
341
+ - CustomSQL
305
342
  - Dlo
306
343
  - Dmo
344
+ SemanticGoalStatusConditionColorEnum:
345
+ description: The Color of the Goal Status Condition
346
+ type: string
347
+ enum:
348
+ - CloudBlue
349
+ - Green
350
+ - Indigo
351
+ - Pink
352
+ - Red
353
+ - Teal
354
+ - Violet
355
+ - Yellow
307
356
  SemanticDisplayCategoryEnum:
308
357
  description: Product category of the Semantic Model. Valid values are Marketing, Commerce, Sales, Service, and Other.
309
358
  type: string
@@ -604,6 +653,16 @@ types:
604
653
  required: false
605
654
  items:
606
655
  type: SemanticFilterOutputRepresentation
656
+ level:
657
+ description: The calculated measurement level
658
+ type: string
659
+ required: false
660
+ enum:
661
+ - AggregateFunction
662
+ - ContextDependent
663
+ - Lod
664
+ - Row
665
+ - TableCalc
607
666
  syntax:
608
667
  description: The syntax of the semantic expression.
609
668
  type: SemanticExpressionSyntaxTypeEnum
@@ -796,6 +855,16 @@ types:
796
855
  required: false
797
856
  items:
798
857
  type: SemanticFilterOutputRepresentation
858
+ level:
859
+ description: The calculated measurement level
860
+ type: string
861
+ required: false
862
+ enum:
863
+ - AggregateFunction
864
+ - ContextDependent
865
+ - Lod
866
+ - Row
867
+ - TableCalc
799
868
  syntax:
800
869
  description: The syntax of the semantic expression.
801
870
  type: SemanticExpressionSyntaxTypeEnum
@@ -1236,50 +1305,58 @@ types:
1236
1305
  description: The string representation of the value to filter against.
1237
1306
  type: string
1238
1307
  required: false
1239
- SemanticGoalDateRangeInputRepresentation:
1240
- description: Input representation for specifying a semantic metric goal date range
1308
+ SemanticGoalStatusConditionInputRepresentation:
1309
+ description: Input representation for specifying a semantic metric goal status condition
1241
1310
  type: object
1242
1311
  properties:
1243
- endDate:
1244
- description: The Value property of the semantic metric goal start date
1245
- type: string
1312
+ color:
1313
+ description: The Color of the Goal Status Condition
1314
+ type: SemanticGoalStatusConditionColorEnum
1246
1315
  required: false
1247
- startDate:
1248
- description: The Value property of the semantic metric goal start date
1316
+ currencyIsoCode:
1317
+ description: The Currency ISO code of the Goal Status Condition
1249
1318
  type: string
1250
1319
  required: false
1251
- SemanticGoalDateRangeOutputRepresentation:
1252
- description: A semantic Metric Goal Date Range.
1253
- type: object
1254
- additionalProperties: true
1255
- properties:
1256
- endDate:
1257
- description: The end date of the semantic metric goal.
1258
- type: string
1320
+ operator:
1321
+ description: The Operator of the Goal Status Condition
1322
+ type: SemanticFilterOperatorTypeEnum
1323
+ required: false
1324
+ primary:
1325
+ description: The Primary state of the Goal Status Condition
1326
+ type: boolean
1259
1327
  required: false
1260
- startDate:
1261
- description: The start date of the semantic metric goal.
1328
+ statusName:
1329
+ description: The Status Name of the Goal Status Condition
1262
1330
  type: string
1263
1331
  required: false
1264
- SemanticGoalValueInputRepresentation:
1265
- description: Input representation for specifying a semantic metric goal value
1266
- type: object
1267
- properties:
1268
- staticValue:
1269
- description: The Static Value property of the semantic metric goal value
1270
- type: number
1271
- format: double
1332
+ value:
1333
+ description: The Value of the Goal Status Condition
1334
+ type: string
1272
1335
  required: false
1273
- SemanticGoalValueOutputRepresentation:
1274
- description: A semantic goal value.
1336
+ SemanticGoalStatusConditionOutputRepresentation:
1337
+ description: Output representation for specifying a semantic metric goal status condition
1275
1338
  type: object
1276
1339
  additionalProperties: true
1277
1340
  properties:
1278
- staticValue:
1279
- description: The static value of the semantic metric goal value.
1280
- type: number
1281
- format: double
1341
+ color:
1342
+ description: The Color of the Goal Status Condition
1343
+ type: SemanticGoalStatusConditionColorEnum
1344
+ currencyIsoCode:
1345
+ description: The Currency ISO code of the Goal Status Condition
1346
+ type: string
1282
1347
  required: false
1348
+ operator:
1349
+ description: The Operator of the Goal Status Condition
1350
+ type: SemanticFilterOperatorTypeEnum
1351
+ primary:
1352
+ description: The Primary state of the Goal Status Condition
1353
+ type: boolean
1354
+ statusName:
1355
+ description: The Status Name of the Goal Status Condition
1356
+ type: string
1357
+ value:
1358
+ description: The Value of the Goal Status Condition
1359
+ type: string
1283
1360
  SemanticGroupingCollectionOutputRepresentation:
1284
1361
  description: Semantic groupings collection representation.
1285
1362
  type: object
@@ -1546,7 +1623,7 @@ types:
1546
1623
  items:
1547
1624
  type: SemanticFilterInputRepresentation
1548
1625
  required: false
1549
- customSql:
1626
+ customSQL:
1550
1627
  description: Represents the custom sql query.
1551
1628
  type: string
1552
1629
  required: false
@@ -1609,7 +1686,7 @@ types:
1609
1686
  description: The date in which the semantic entity was last modified.
1610
1687
  type: string
1611
1688
  required: false
1612
- customSql:
1689
+ customSQL:
1613
1690
  description: The custom sql query, relevant only for logicalView created by sql
1614
1691
  type: string
1615
1692
  required: false
@@ -1989,32 +2066,29 @@ types:
1989
2066
  description: Input representation for specifying a semantic metric goal
1990
2067
  type: object
1991
2068
  properties:
1992
- date:
1993
- description: The Date property of the semantic metric goal.
1994
- type: SemanticGoalDateRangeInputRepresentation
1995
- required: false
1996
- goalType:
1997
- description: The Type property of the semantic metric goal.
1998
- type: SemanticGoalTypeEnum
2069
+ forecasting:
2070
+ description: The forecasting state of the semantic metric goal.
2071
+ type: boolean
1999
2072
  required: false
2000
- value:
2001
- description: The Value property of the semantic metric goal.
2002
- type: SemanticGoalValueInputRepresentation
2073
+ statusConditions:
2074
+ description: The Status Condition list of the semantic metric goal.
2075
+ type: array
2076
+ items:
2077
+ type: SemanticGoalStatusConditionInputRepresentation
2003
2078
  required: false
2004
2079
  SemanticMetricGoalOutputRepresentation:
2005
2080
  description: A semantic Metric Goal.
2006
2081
  type: object
2007
2082
  additionalProperties: true
2008
2083
  properties:
2009
- date:
2010
- description: The Date range of the semantic metric goal.
2011
- type: SemanticGoalDateRangeOutputRepresentation
2012
- goalType:
2013
- description: The Goal Type of the semantic metric goal type.
2014
- type: SemanticGoalTypeEnum
2015
- value:
2016
- description: The API name of the semantic metric goal.
2017
- type: SemanticGoalValueOutputRepresentation
2084
+ forecasting:
2085
+ description: The forecasting state of the semantic metric goal.
2086
+ type: boolean
2087
+ statusConditions:
2088
+ description: The status condition list of the semantic metric goal.
2089
+ type: array
2090
+ items:
2091
+ type: SemanticGoalStatusConditionOutputRepresentation
2018
2092
  SemanticMetricInputRepresentation:
2019
2093
  description: Input representation for creating a semantic metric
2020
2094
  type: object
@@ -2782,6 +2856,12 @@ types:
2782
2856
  description: The API name of the semantic entity.
2783
2857
  type: string
2784
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
2785
2865
  description:
2786
2866
  description: An optional description of the semantic entity.
2787
2867
  type: string
@@ -2828,6 +2908,12 @@ types:
2828
2908
  apiName:
2829
2909
  description: The API name of the semantic entity.
2830
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
2831
2917
  baseModelApiName:
2832
2918
  description: The origin model of the semantic entity.
2833
2919
  type: string
@@ -2891,6 +2977,28 @@ types:
2891
2977
  required: false
2892
2978
  items:
2893
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
2894
3002
  SemanticRelationshipCollectionOutputRepresentation:
2895
3003
  description: Semantic relationship collection representation.
2896
3004
  type: object
@@ -4121,6 +4229,34 @@ types:
4121
4229
  modelApiNameOrId:
4122
4230
  type: string
4123
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
4124
4260
  /groupings:
4125
4261
  get:
4126
4262
  displayName: getSemanticGroupingCollection
@@ -4645,6 +4781,11 @@ types:
4645
4781
  body:
4646
4782
  application/json:
4647
4783
  type: SemanticSubMetricCollectionOutputRepresentation
4784
+ queryParameters:
4785
+ hasGoal:
4786
+ description: Filters the list of Sub Metrics by having a goal in the sub metric.
4787
+ type: boolean
4788
+ required: false
4648
4789
  post:
4649
4790
  displayName: postSemanticSubMetricCollection
4650
4791
  description: Creates a new semantic sub metric
@@ -4707,13 +4848,13 @@ types:
4707
4848
  description: Success
4708
4849
  get:
4709
4850
  displayName: getSemanticMetricGoal
4710
- description: Retrieves all Semantic Sub Metrics having a Goal.
4851
+ description: Retrieve Semantic Sub.
4711
4852
  responses:
4712
4853
  '200':
4713
4854
  description: Success
4714
4855
  body:
4715
4856
  application/json:
4716
- type: SemanticSubMetricCollectionOutputRepresentation
4857
+ type: SemanticSubMetricOutputRepresentation
4717
4858
  patch:
4718
4859
  displayName: patchSemanticMetricGoal
4719
4860
  description: Creates a goal in Semantic Sub Metrics.
@@ -4744,6 +4885,15 @@ types:
4744
4885
  body:
4745
4886
  application/json:
4746
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
4747
4897
  uriParameters:
4748
4898
  subMetricIds:
4749
4899
  type: string
@@ -113,3 +113,16 @@ types:
113
113
  name: urlParams.subMetricNameOrId
114
114
  (luvio.adapter):
115
115
  name: deleteSemanticSubMetric
116
+ /dependencies:
117
+ get:
118
+ (luvio.adapter):
119
+ name: getLeafDependenciesByTypes
120
+ /sub-metrics/{subMetricNameOrId}/goal:
121
+ patch:
122
+ (luvio.adapter):
123
+ name: patchSemanticMetricGoal
124
+ delete:
125
+ (luvio.key):
126
+ name: urlParams.subMetricNameOrId
127
+ (luvio.adapter):
128
+ name: deleteGoalFromSubMetric
@@ -1,31 +0,0 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "5fc934831301f8d8d38f498c3016f5f4";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: SemanticGoalDateRangeInputRepresentation, existing: SemanticGoalDateRangeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticGoalDateRangeInputRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: SemanticGoalDateRangeInputRepresentationNormalized, incoming: SemanticGoalDateRangeInputRepresentationNormalized): boolean;
8
- export declare const ingest: $64$luvio_engine_ResourceIngest;
9
- export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticGoalDateRangeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
- /**
11
- * Input representation for specifying a semantic metric goal date range
12
- *
13
- * Keys:
14
- * (none)
15
- */
16
- export interface SemanticGoalDateRangeInputRepresentationNormalized {
17
- /** The Value property of the semantic metric goal start date */
18
- endDate?: string;
19
- /** The Value property of the semantic metric goal start date */
20
- startDate?: string;
21
- }
22
- /**
23
- * Input representation for specifying a semantic metric goal date range
24
- *
25
- * Keys:
26
- * (none)
27
- */
28
- export interface SemanticGoalDateRangeInputRepresentation {
29
- endDate?: string;
30
- startDate?: string;
31
- }
@@ -1,31 +0,0 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "fab01ba4d87279437902114875229b17";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: SemanticGoalDateRangeOutputRepresentation, existing: SemanticGoalDateRangeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticGoalDateRangeOutputRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: SemanticGoalDateRangeOutputRepresentationNormalized, incoming: SemanticGoalDateRangeOutputRepresentationNormalized): boolean;
8
- export declare const ingest: $64$luvio_engine_ResourceIngest;
9
- export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticGoalDateRangeOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
- /**
11
- * A semantic Metric Goal Date Range.
12
- *
13
- * Keys:
14
- * (none)
15
- */
16
- export interface SemanticGoalDateRangeOutputRepresentationNormalized {
17
- /** The end date of the semantic metric goal. */
18
- endDate?: string;
19
- /** The start date of the semantic metric goal. */
20
- startDate?: string;
21
- }
22
- /**
23
- * A semantic Metric Goal Date Range.
24
- *
25
- * Keys:
26
- * (none)
27
- */
28
- export interface SemanticGoalDateRangeOutputRepresentation {
29
- endDate?: string;
30
- startDate?: string;
31
- }
@@ -1,28 +0,0 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "ff91598c8f9f42c2ec9c9e526a2cce75";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: SemanticGoalValueInputRepresentation, existing: SemanticGoalValueInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticGoalValueInputRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: SemanticGoalValueInputRepresentationNormalized, incoming: SemanticGoalValueInputRepresentationNormalized): boolean;
8
- export declare const ingest: $64$luvio_engine_ResourceIngest;
9
- export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticGoalValueInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
- /**
11
- * Input representation for specifying a semantic metric goal value
12
- *
13
- * Keys:
14
- * (none)
15
- */
16
- export interface SemanticGoalValueInputRepresentationNormalized {
17
- /** The Static Value property of the semantic metric goal value */
18
- staticValue?: number;
19
- }
20
- /**
21
- * Input representation for specifying a semantic metric goal value
22
- *
23
- * Keys:
24
- * (none)
25
- */
26
- export interface SemanticGoalValueInputRepresentation {
27
- staticValue?: number;
28
- }
@@ -1,28 +0,0 @@
1
- import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "7d5ee6baae643c44b82c6114e8cba70c";
3
- export declare function validate(obj: any, path?: string): TypeError | null;
4
- export declare const RepresentationType: string;
5
- export declare function normalize(input: SemanticGoalValueOutputRepresentation, existing: SemanticGoalValueOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticGoalValueOutputRepresentationNormalized;
6
- export declare const select: () => $64$luvio_engine_FragmentSelection;
7
- export declare function equals(existing: SemanticGoalValueOutputRepresentationNormalized, incoming: SemanticGoalValueOutputRepresentationNormalized): boolean;
8
- export declare const ingest: $64$luvio_engine_ResourceIngest;
9
- export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticGoalValueOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
- /**
11
- * A semantic goal value.
12
- *
13
- * Keys:
14
- * (none)
15
- */
16
- export interface SemanticGoalValueOutputRepresentationNormalized {
17
- /** The static value of the semantic metric goal value. */
18
- staticValue?: number;
19
- }
20
- /**
21
- * A semantic goal value.
22
- *
23
- * Keys:
24
- * (none)
25
- */
26
- export interface SemanticGoalValueOutputRepresentation {
27
- staticValue?: number;
28
- }