@salesforce/lds-adapters-cdp-semantic-authoring 1.354.0-dev4 → 1.354.0-dev6
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 +447 -601
- package/dist/es/es2018/types/src/generated/types/SemanticDependencyCollectionOutputRepresentation.d.ts +5 -4
- package/dist/es/es2018/types/src/generated/types/SemanticDependencyInnerCollectionOutputRepresentation.d.ts +12 -3
- package/dist/es/es2018/types/src/generated/types/SemanticDependencyOutputRepresentation.d.ts +3 -2
- package/dist/es/es2018/types/src/generated/types/SemanticFilterInputRepresentation.d.ts +5 -2
- package/dist/es/es2018/types/src/generated/types/SemanticFilterOutputRepresentation.d.ts +5 -2
- package/package.json +3 -3
- package/sfdc/index.js +460 -613
- package/src/raml/api.raml +16 -2
- package/src/raml/luvio.raml +6 -0
package/src/raml/api.raml
CHANGED
|
@@ -227,6 +227,7 @@ types:
|
|
|
227
227
|
- EqualsIgnoreCase
|
|
228
228
|
- GreaterThan
|
|
229
229
|
- GreaterThanOrEqualTo
|
|
230
|
+
- In
|
|
230
231
|
- IsEmpty
|
|
231
232
|
- IsNotEmpty
|
|
232
233
|
- IsNotNull
|
|
@@ -243,6 +244,7 @@ types:
|
|
|
243
244
|
- NextYear
|
|
244
245
|
- NotContains
|
|
245
246
|
- NotContainsIgnoreCase
|
|
247
|
+
- NotIn
|
|
246
248
|
- PreviousFiscalQuarter
|
|
247
249
|
- PreviousFiscalQuarterToDate
|
|
248
250
|
- PreviousFiscalYear
|
|
@@ -1465,9 +1467,15 @@ types:
|
|
|
1465
1467
|
type: SemanticFilterOperatorTypeEnum
|
|
1466
1468
|
required: false
|
|
1467
1469
|
value:
|
|
1468
|
-
description: The string representation of the value to filter against.
|
|
1470
|
+
description: The string representation of the value to filter against. (not supported with In/NotIn operators)
|
|
1469
1471
|
type: string
|
|
1470
1472
|
required: false
|
|
1473
|
+
values:
|
|
1474
|
+
description: Values to filter against when using In/NotIn operator
|
|
1475
|
+
type: array
|
|
1476
|
+
items:
|
|
1477
|
+
type: string
|
|
1478
|
+
required: false
|
|
1471
1479
|
SemanticFilterOutputRepresentation:
|
|
1472
1480
|
description: A semantic filter.
|
|
1473
1481
|
type: object
|
|
@@ -1482,9 +1490,15 @@ types:
|
|
|
1482
1490
|
type: SemanticFilterOperatorTypeEnum
|
|
1483
1491
|
required: false
|
|
1484
1492
|
value:
|
|
1485
|
-
description: The string representation of the value to filter against.
|
|
1493
|
+
description: The string representation of the value to filter against. (not supported with In/NotIn operators)
|
|
1486
1494
|
type: string
|
|
1487
1495
|
required: false
|
|
1496
|
+
values:
|
|
1497
|
+
description: Values to filter against when using In/NotIn operator
|
|
1498
|
+
type: array
|
|
1499
|
+
required: false
|
|
1500
|
+
items:
|
|
1501
|
+
type: string
|
|
1488
1502
|
SemanticGoalDateRangeInputRepresentation:
|
|
1489
1503
|
description: Input representation for specifying a semantic goal date range
|
|
1490
1504
|
type: object
|
package/src/raml/luvio.raml
CHANGED
|
@@ -59,6 +59,12 @@ types:
|
|
|
59
59
|
subMetricNameOrId: subMetricDefinitionApiName
|
|
60
60
|
startDate: dateRange.startDate
|
|
61
61
|
endDate: dateRange.endDate
|
|
62
|
+
SemanticDependencyOutputRepresentation:
|
|
63
|
+
(luvio.opaque): true
|
|
64
|
+
(luvio.ttl): 100
|
|
65
|
+
SemanticDependencyCollectionOutputRepresentation:
|
|
66
|
+
(luvio.opaque): true
|
|
67
|
+
(luvio.ttl): 100
|
|
62
68
|
|
|
63
69
|
/ssot/semantic/models:
|
|
64
70
|
get:
|