@salesforce/lds-adapters-industries-timeline 1.281.0 → 1.283.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.
@@ -2011,6 +2011,13 @@ function validate$2(obj, path = 'TimelineEventTypeMetadataRepresentation') {
2011
2011
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2012
2012
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
2013
2013
  }
2014
+ if (obj.additionalEventData !== undefined) {
2015
+ const obj_additionalEventData = obj.additionalEventData;
2016
+ const path_additionalEventData = path + '.additionalEventData';
2017
+ if (obj_additionalEventData === undefined) {
2018
+ return new TypeError('Expected "defined" but received "' + typeof obj_additionalEventData + '" (at "' + path_additionalEventData + '")');
2019
+ }
2020
+ }
2014
2021
  if (obj.anchorReferenceField !== undefined) {
2015
2022
  const obj_anchorReferenceField = obj.anchorReferenceField;
2016
2023
  const path_anchorReferenceField = path + '.anchorReferenceField';
@@ -1,6 +1,6 @@
1
1
  import { TimelineElementRepresentation as TimelineElementRepresentation_TimelineElementRepresentation } from './TimelineElementRepresentation';
2
2
  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';
3
- export declare const VERSION = "7f908dcc40861bc4b25d8f4a61e4818f";
3
+ export declare const VERSION = "a8a2c45599ba9d7f65480375e340a758";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: TimelineEventTypeMetadataRepresentation, existing: TimelineEventTypeMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TimelineEventTypeMetadataRepresentationNormalized;
@@ -15,6 +15,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
15
15
  * (none)
16
16
  */
17
17
  export interface TimelineEventTypeMetadataRepresentationNormalized {
18
+ /** Event Entity Additional Data */
19
+ additionalEventData?: unknown;
18
20
  anchorReferenceField?: TimelineElementRepresentation_TimelineElementRepresentation;
19
21
  /** Event Entity API Name */
20
22
  entityApiName: string | null;
@@ -40,6 +42,7 @@ export interface TimelineEventTypeMetadataRepresentationNormalized {
40
42
  * (none)
41
43
  */
42
44
  export interface TimelineEventTypeMetadataRepresentation {
45
+ additionalEventData?: unknown;
43
46
  anchorReferenceField?: TimelineElementRepresentation_TimelineElementRepresentation;
44
47
  entityApiName: string | null;
45
48
  entityLabel: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-timeline",
3
- "version": "1.281.0",
3
+ "version": "1.283.0",
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.281.0"
42
+ "@salesforce/lds-bindings": "^1.283.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@salesforce/lds-compiler-plugins": "^1.281.0",
46
- "@salesforce/lds-karma": "^1.281.0"
45
+ "@salesforce/lds-compiler-plugins": "^1.283.0",
46
+ "@salesforce/lds-karma": "^1.283.0"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -2021,6 +2021,13 @@ function validate$2(obj, path = 'TimelineEventTypeMetadataRepresentation') {
2021
2021
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
2022
2022
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
2023
2023
  }
2024
+ if (obj.additionalEventData !== undefined) {
2025
+ const obj_additionalEventData = obj.additionalEventData;
2026
+ const path_additionalEventData = path + '.additionalEventData';
2027
+ if (obj_additionalEventData === undefined) {
2028
+ return new TypeError('Expected "defined" but received "' + typeof obj_additionalEventData + '" (at "' + path_additionalEventData + '")');
2029
+ }
2030
+ }
2024
2031
  if (obj.anchorReferenceField !== undefined) {
2025
2032
  const obj_anchorReferenceField = obj.anchorReferenceField;
2026
2033
  const path_anchorReferenceField = path + '.anchorReferenceField';
@@ -2609,4 +2616,4 @@ withDefaultLuvio((luvio) => {
2609
2616
  });
2610
2617
 
2611
2618
  export { getDataGraphMetadata, getDataGraphMetadata_imperative, getDataModelObjects, getDataModelObjects_imperative, getEngagementEvents, getEngagementEvents_imperative, getTimelineData, getTimelineData_imperative, getTimelineMetadata, getTimelineMetadata_imperative };
2612
- // version: 1.281.0-bcef40769
2619
+ // version: 1.283.0-80ddb6c3c
package/src/raml/api.raml CHANGED
@@ -435,6 +435,10 @@ types:
435
435
  description: Whether Event Entity is creatable
436
436
  type: boolean
437
437
  required: false
438
+ additionalEventData:
439
+ description: Event Entity Additional Data
440
+ type: any
441
+ required: false
438
442
  fieldsToDisplay:
439
443
  description: Event Object fieldsToDisplay List
440
444
  type: array