@salesforce/lds-network-aura 1.168.0 → 1.170.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/ldsNetwork.js +5 -1
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -654,6 +654,8 @@ const SALES_EXCELLENCE_GET_ALM_QUEUES = new RegExp(`${SALES_EXCELLENCE_BASE_URI}
|
|
|
654
654
|
const SALES_EXCELLENCE_GET_ACTIONABLE_LIST_KPI_BAR = new RegExp(`${SALES_EXCELLENCE_BASE_URI}/actionable-list/kpi`, 'i');
|
|
655
655
|
const TIMELINE_PATH = new RegExp(`${CONNECT_BASE_URI}/timeline/([A-Z0-9]){15,18}/timeline-definitions/([A-Za-z0-9_]){1,255}/events`, 'i');
|
|
656
656
|
const TIMELINE_METADATA_PATH = new RegExp(`${CONNECT_BASE_URI}/timeline/metadata/configurations`, 'i');
|
|
657
|
+
const ENGAGEMENT_EVENT_TIMELINE_PATH = new RegExp(`${CONNECT_BASE_URI}/timeline/([A-Za-z0-9]){15,18}/timeline-definitions/([A-Za-z0-9_]){1,255}/cust-data-pfrm/events`, 'i');
|
|
658
|
+
const TIMELINE_ENGAGEMENT_EVENT_METADATA_PATH = new RegExp(`${CONNECT_BASE_URI}/timeline/cust-data-pfrm/data-model-objects`, 'i');
|
|
657
659
|
const CRITERIABASEDSEARCHFILTER_CONFIGURATIONS_PATH = new RegExp(`${CONNECT_BASE_URI}/criteria-based-search/configurations`, 'i');
|
|
658
660
|
const CRITERIABASEDSEARCHFILTER_SEARCH_OBJECT_PATH = new RegExp(`${CONNECT_BASE_URI}/criteria-based-search/searchable-object/results`, 'i');
|
|
659
661
|
const AI_ACCELERATOR_PREDICTIONS = new RegExp(`${CONNECT_BASE_URI}/aiaccelerator/predictions`, 'i');
|
|
@@ -1226,6 +1228,8 @@ const cdpSalesExcellence = [
|
|
|
1226
1228
|
const timeline = [
|
|
1227
1229
|
generateAdapter('get', CONNECT_BASE_URI, TIMELINE_PATH, 'TimelineController.getTimelineData'),
|
|
1228
1230
|
generateAdapter('get', CONNECT_BASE_URI, TIMELINE_METADATA_PATH, 'TimelineController.getTimelineMetadata'),
|
|
1231
|
+
generateAdapter('get', CONNECT_BASE_URI, ENGAGEMENT_EVENT_TIMELINE_PATH, 'TimelineController.getEngagementEvents'),
|
|
1232
|
+
generateAdapter('get', CONNECT_BASE_URI, TIMELINE_ENGAGEMENT_EVENT_METADATA_PATH, 'TimelineController.getDataModelObjects'),
|
|
1229
1233
|
];
|
|
1230
1234
|
const criteriabasedsearchfilter = [
|
|
1231
1235
|
generateAdapter('get', CONNECT_BASE_URI, CRITERIABASEDSEARCHFILTER_CONFIGURATIONS_PATH, 'CriteriaBasedSearchController.getSearchCriteriaConfigurations'),
|
|
@@ -3062,4 +3066,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3062
3066
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3063
3067
|
|
|
3064
3068
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3065
|
-
// version: 1.
|
|
3069
|
+
// version: 1.170.0-6d09e766b
|