@salesforce/lds-network-aura 1.150.8 → 1.152.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
|
@@ -602,6 +602,7 @@ const ACTIONABLE_LIST_DEFINITION_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/acti
|
|
|
602
602
|
const ACTIONABLE_LIST_GET_ACTIONABLE_LIST_MEMBERS_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list/([A-Z0-9]){15,18}/members$`, 'i');
|
|
603
603
|
const UPSERT_ACTIONABLE_LIST_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list$`, 'i');
|
|
604
604
|
const ACTIONABLE_LIST_DATASET_INFO_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list-definition/rows$`, 'i');
|
|
605
|
+
const UPSERT_AL_DATASET_COLUMN_USER_URI_PATH = new RegExp(`${CONNECT_BASE_URI}/actionable-list-dataset-column-user-assignment$`, 'i');
|
|
605
606
|
const CLM_CONTRACT_URI_PATH = new RegExp(`${CLM_BASE_URI}/contract/([A-Z0-9]){15,18}/contract-document-version$`, 'i');
|
|
606
607
|
const CLM_GET_DOCUMENT_URI_PATH = new RegExp(`${CLM_BASE_URI}/document-template$`, 'i');
|
|
607
608
|
const CLM_UPDATE_DOCUMENT_URI_PATH = new RegExp(`${CLM_BASE_URI}/contract-document-version/([A-Z0-9]){1,18}$`, 'i');
|
|
@@ -756,6 +757,7 @@ const GET_SUCCESS_TEAM = new RegExp(`${EDUCATION_BASE_URI}/([A-Z0-9]{15,18})/suc
|
|
|
756
757
|
const GET_AVAILABLE_TOPICS = new RegExp(`${EDUCATION_BASE_URI}/appointment-booking/available-topics`, 'i');
|
|
757
758
|
const GET_AVAILABLE_TIME_SLOTS = new RegExp(`${EDUCATION_BASE_URI}/appointment-booking/available-time-slots`, 'i');
|
|
758
759
|
const CREATE_CARE_PLANS = new RegExp(`${EDUCATION_BASE_URI}/careplan/bulk`, 'i');
|
|
760
|
+
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');
|
|
759
761
|
const APPLY_REMINDER_PATH = new RegExp(`${CONNECT_BASE_URI}/automated-actions/reminder/apply`, 'i');
|
|
760
762
|
const CPQ_PREVIEW_PATH = new RegExp(`${CPQ_BASE_URI}/preview`, 'i');
|
|
761
763
|
const CPQ_PRODUCT_LIST_PATH = new RegExp(`${CPQ_BASE_URI}/products`, 'i');
|
|
@@ -891,6 +893,7 @@ const connect = [
|
|
|
891
893
|
generateAdapter('get', CONNECT_BASE_URI, ACTIONABLE_LIST_GET_ACTIONABLE_LIST_MEMBERS_PATH, 'IndustriesActionableListController.getActionableListMembers'),
|
|
892
894
|
generateAdapter('post', CONNECT_BASE_URI, UPSERT_ACTIONABLE_LIST_URI_PATH, 'IndustriesActionableListController.upsertActionableList'),
|
|
893
895
|
generateAdapter('post', CONNECT_BASE_URI, ACTIONABLE_LIST_DATASET_INFO_URI_PATH, 'IndustriesActionableListController.getActionableListDatasetInfo'),
|
|
896
|
+
generateAdapter('post', CONNECT_BASE_URI, UPSERT_AL_DATASET_COLUMN_USER_URI_PATH, 'IndustriesActionableListController.upsertActionableListDatasetColumnUser'),
|
|
894
897
|
generateAdapter('get', CLM_BASE_URI, CLM_CONTRACT_URI_PATH, 'ClmController.getContractDocumentVersion'),
|
|
895
898
|
generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_URI_PATH, 'ClmController.createContractDocumentVersionAndInitializeGenerateDocumentProcess'),
|
|
896
899
|
generateAdapter('get', CLM_BASE_URI, CLM_GET_DOCUMENT_URI_PATH, 'ClmController.getTemplates'),
|
|
@@ -1276,6 +1279,7 @@ const education = [
|
|
|
1276
1279
|
generateAdapter('get', EDUCATION_BASE_URI, GET_AVAILABLE_TOPICS, 'AppointmentBookingController.getAvailableTopics'),
|
|
1277
1280
|
generateAdapter('post', EDUCATION_BASE_URI, GET_AVAILABLE_TIME_SLOTS, 'AppointmentBookingController.postAvailableTimeSlots'),
|
|
1278
1281
|
generateAdapter('post', EDUCATION_BASE_URI, CREATE_CARE_PLANS, 'CarePlanBulkController.createCarePlans'),
|
|
1282
|
+
generateAdapter('get', EDUCATION_BASE_URI, GET_PERSON_PUBLIC_PROFILE, 'PersonPublicProfileInfoController.getPersonPublicProfile'),
|
|
1279
1283
|
];
|
|
1280
1284
|
const industriesContext = [
|
|
1281
1285
|
generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_CONTEXT_SERVICE_ACCESS_PATH, 'ContextAccessResourceFamilyController.getContextServiceAccess'),
|
|
@@ -3007,4 +3011,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3007
3011
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3008
3012
|
|
|
3009
3013
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3010
|
-
// version: 1.
|
|
3014
|
+
// version: 1.152.0-6a6af3d0d
|