@salesforce/lds-network-aura 1.143.0 → 1.145.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
CHANGED
|
@@ -320,6 +320,15 @@ function executeSoqlQueryPost(resourceRequest) {
|
|
|
320
320
|
}
|
|
321
321
|
router.post((path) => path.startsWith(`${WAVE_BASE_URI}/soql`), executeSoqlQueryPost);
|
|
322
322
|
|
|
323
|
+
function executeCdpQueryPost(resourceRequest) {
|
|
324
|
+
const { body } = resourceRequest;
|
|
325
|
+
const params = buildUiApiParams({
|
|
326
|
+
input: body,
|
|
327
|
+
}, resourceRequest);
|
|
328
|
+
return dispatchAction('CdpApplicationDataGraphController.createAdg', params, undefined);
|
|
329
|
+
}
|
|
330
|
+
router.post((path) => path.startsWith(`${CDP_BASE_URI}/application-data-graphs`), executeCdpQueryPost);
|
|
331
|
+
|
|
323
332
|
const LWR_APEX_BASE_URI = '/lwr/apex/v59.0';
|
|
324
333
|
const ApexController = 'ApexActionController.execute';
|
|
325
334
|
const CACHE_CONTROL = 'Cache-Control';
|
|
@@ -760,9 +769,9 @@ const CPQ_PRICE_CART = new RegExp(`${CPQ_BASE_URI}/carts/([A-Za-z0-9]+(-[A-Za-z0
|
|
|
760
769
|
const FUNDRAISING_GIFT_COMMITMENT_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/donor/[a-zA-Z0-9]{15,18}/commitment$`, 'i');
|
|
761
770
|
const FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/campaign/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
762
771
|
const FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/commitment/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
763
|
-
const CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/
|
|
764
|
-
const GET_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/
|
|
765
|
-
const DELETE_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/
|
|
772
|
+
const CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs`, 'i');
|
|
773
|
+
const GET_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
774
|
+
const DELETE_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
766
775
|
const connect = [
|
|
767
776
|
generateAdapter('get', CONNECT_BASE_URI, NOTIFICATION_SERVICE_CONFIG_PATH, 'NotificationServiceConnectFamilyController.getNotificationServiceConfig'),
|
|
768
777
|
generateAdapter('post', CONNECT_BASE_URI, AI_ACCELERATOR_RECOMMENDATIONS, 'AIAcceleratorConnectFamilyController.fetchRecommendations'),
|
|
@@ -2984,4 +2993,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
2984
2993
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
2985
2994
|
|
|
2986
2995
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
2987
|
-
// version: 1.
|
|
2996
|
+
// version: 1.145.0-a93c76713
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|