@salesforce/lds-network-aura 1.167.0 → 1.169.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 +4 -2
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -654,6 +654,7 @@ 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 TIMELINE_ENGAGEMENT_EVENT_METADATA_PATH = new RegExp(`${CONNECT_BASE_URI}/timeline/cust-data-pfrm/data-model-objects`, 'i');
|
|
657
658
|
const CRITERIABASEDSEARCHFILTER_CONFIGURATIONS_PATH = new RegExp(`${CONNECT_BASE_URI}/criteria-based-search/configurations`, 'i');
|
|
658
659
|
const CRITERIABASEDSEARCHFILTER_SEARCH_OBJECT_PATH = new RegExp(`${CONNECT_BASE_URI}/criteria-based-search/searchable-object/results`, 'i');
|
|
659
660
|
const AI_ACCELERATOR_PREDICTIONS = new RegExp(`${CONNECT_BASE_URI}/aiaccelerator/predictions`, 'i');
|
|
@@ -778,7 +779,7 @@ const GET_AVAILABLE_TIME_SLOTS = new RegExp(`${EDUCATION_BASE_URI}/appointment-b
|
|
|
778
779
|
const CREATE_CARE_PLANS = new RegExp(`${EDUCATION_BASE_URI}/careplan/bulk`, 'i');
|
|
779
780
|
const EDU_PUBLISH_LEARNING_PROGRAM_PLAN = new RegExp(`${EDUCATION_BASE_URI}/campus-setup/learning-program-plan/publish`, 'i');
|
|
780
781
|
const EDU_LEARNING = new RegExp(`${EDUCATION_BASE_URI}/campus-setup/learning`, 'i');
|
|
781
|
-
const GET_PERSON_PUBLIC_PROFILE = new RegExp(`${EDUCATION_BASE_URI}/person-public-profile/([A-Za-z0-9]+(
|
|
782
|
+
const GET_PERSON_PUBLIC_PROFILE = new RegExp(`${EDUCATION_BASE_URI}/person-public-profile/([A-Za-z0-9]+( ?-?[A-Za-z0-9]+)+)/([A-Z0-9]{15,18})`, 'i');
|
|
782
783
|
const APPLY_REMINDER_PATH = new RegExp(`${CONNECT_BASE_URI}/automated-actions/reminder/apply`, 'i');
|
|
783
784
|
const CPQ_PREVIEW_PATH = new RegExp(`${CPQ_BASE_URI}/preview`, 'i');
|
|
784
785
|
const CPQ_PRODUCT_LIST_PATH = new RegExp(`${CPQ_BASE_URI}/products`, 'i');
|
|
@@ -1226,6 +1227,7 @@ const cdpSalesExcellence = [
|
|
|
1226
1227
|
const timeline = [
|
|
1227
1228
|
generateAdapter('get', CONNECT_BASE_URI, TIMELINE_PATH, 'TimelineController.getTimelineData'),
|
|
1228
1229
|
generateAdapter('get', CONNECT_BASE_URI, TIMELINE_METADATA_PATH, 'TimelineController.getTimelineMetadata'),
|
|
1230
|
+
generateAdapter('get', CONNECT_BASE_URI, TIMELINE_ENGAGEMENT_EVENT_METADATA_PATH, 'TimelineController.getDataModelObjects'),
|
|
1229
1231
|
];
|
|
1230
1232
|
const criteriabasedsearchfilter = [
|
|
1231
1233
|
generateAdapter('get', CONNECT_BASE_URI, CRITERIABASEDSEARCHFILTER_CONFIGURATIONS_PATH, 'CriteriaBasedSearchController.getSearchCriteriaConfigurations'),
|
|
@@ -3062,4 +3064,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3062
3064
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3063
3065
|
|
|
3064
3066
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3065
|
-
// version: 1.
|
|
3067
|
+
// version: 1.169.0-9af4983cf
|