@salesforce/lds-adapters-industries-timeline 1.286.0 → 1.287.0-dev2
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.
|
@@ -291,6 +291,11 @@ function validate$j(obj, path = 'EngagementEventsRelatedListFieldsRepresentation
|
|
|
291
291
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
292
292
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
293
293
|
}
|
|
294
|
+
const obj_category = obj.category;
|
|
295
|
+
const path_category = path + '.category';
|
|
296
|
+
if (typeof obj_category !== 'string') {
|
|
297
|
+
return new TypeError('Expected "string" but received "' + typeof obj_category + '" (at "' + path_category + '")');
|
|
298
|
+
}
|
|
294
299
|
const obj_label = obj.label;
|
|
295
300
|
const path_label = path + '.label';
|
|
296
301
|
if (typeof obj_label !== 'string') {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
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 = "
|
|
2
|
+
export declare const VERSION = "b6a19d981e693f9aeca2d82362bdba25";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: EngagementEventsRelatedListFieldsRepresentation, existing: EngagementEventsRelatedListFieldsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EngagementEventsRelatedListFieldsRepresentationNormalized;
|
|
@@ -14,6 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
14
|
* (none)
|
|
15
15
|
*/
|
|
16
16
|
export interface EngagementEventsRelatedListFieldsRepresentationNormalized {
|
|
17
|
+
/** category of the field can be TITLE or DETAIL */
|
|
18
|
+
category: string;
|
|
17
19
|
/** label of the field */
|
|
18
20
|
label: string;
|
|
19
21
|
/** data type of the field */
|
|
@@ -28,6 +30,7 @@ export interface EngagementEventsRelatedListFieldsRepresentationNormalized {
|
|
|
28
30
|
* (none)
|
|
29
31
|
*/
|
|
30
32
|
export interface EngagementEventsRelatedListFieldsRepresentation {
|
|
33
|
+
category: string;
|
|
31
34
|
label: string;
|
|
32
35
|
type: string;
|
|
33
36
|
value: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-timeline",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.287.0-dev2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": " GET Resource to get the Timeline Data",
|
|
6
6
|
"main": "dist/es/es2018/industries-timeline.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test:unit": "jest"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.287.0-dev2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.287.0-dev2",
|
|
46
|
+
"@salesforce/lds-karma": "^1.287.0-dev2"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -986,6 +986,11 @@ function validate$b(obj, path = 'EngagementEventsRelatedListFieldsRepresentation
|
|
|
986
986
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
987
987
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
988
988
|
}
|
|
989
|
+
const obj_category = obj.category;
|
|
990
|
+
const path_category = path + '.category';
|
|
991
|
+
if (typeof obj_category !== 'string') {
|
|
992
|
+
return new TypeError('Expected "string" but received "' + typeof obj_category + '" (at "' + path_category + '")');
|
|
993
|
+
}
|
|
989
994
|
const obj_label = obj.label;
|
|
990
995
|
const path_label = path + '.label';
|
|
991
996
|
if (typeof obj_label !== 'string') {
|
|
@@ -2631,4 +2636,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2631
2636
|
});
|
|
2632
2637
|
|
|
2633
2638
|
export { getDataGraphMetadata, getDataGraphMetadata_imperative, getDataModelObjects, getDataModelObjects_imperative, getEngagementEvents, getEngagementEvents_imperative, getTimelineData, getTimelineData_imperative, getTimelineMetadata, getTimelineMetadata_imperative };
|
|
2634
|
-
// version: 1.
|
|
2639
|
+
// version: 1.287.0-dev2-0906f6561
|
package/src/raml/api.raml
CHANGED
|
@@ -194,6 +194,9 @@ types:
|
|
|
194
194
|
description: 'Output representation of FIELDS of Related List of Engagement Events '
|
|
195
195
|
type: object
|
|
196
196
|
properties:
|
|
197
|
+
category:
|
|
198
|
+
description: category of the field can be TITLE or DETAIL
|
|
199
|
+
type: string
|
|
197
200
|
label:
|
|
198
201
|
description: label of the field
|
|
199
202
|
type: string
|