@salesforce/lds-network-aura 1.122.0 → 1.123.1
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 +6 -2
- package/package.json +2 -2
package/dist/ldsNetwork.js
CHANGED
|
@@ -64,7 +64,7 @@ const DATA_PROVIDER_BASE_URI = `${CONNECT_BASE_URI}/data-providers`;
|
|
|
64
64
|
const EDUCATION_BASE_URI = `${CONNECT_BASE_URI}/education`;
|
|
65
65
|
const CPQ_BASE_URI = `${CONNECT_BASE_URI}/cpq`;
|
|
66
66
|
const LIGHTNING_CARDS_BASE_URI = `${CONNECT_BASE_URI}/lightning-cards`;
|
|
67
|
-
const FUNDRAISING_BASE_URI = `${
|
|
67
|
+
const FUNDRAISING_BASE_URI = `${CONNECT_BASE_URI}/fundraising`;
|
|
68
68
|
|
|
69
69
|
function getStatusText(status) {
|
|
70
70
|
switch (status) {
|
|
@@ -728,6 +728,8 @@ const CREATE_CARE_PLANS = new RegExp(`${EDUCATION_BASE_URI}/careplan/bulk`, 'i')
|
|
|
728
728
|
const APPLY_REMINDER_PATH = new RegExp(`${CONNECT_BASE_URI}/automated-actions/reminder/apply`, 'i');
|
|
729
729
|
const CPQ_PREVIEW_PATH = new RegExp(`${CPQ_BASE_URI}/preview`, 'i');
|
|
730
730
|
const FUNDRAISING_GIFT_COMMITMENT_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/donor/[a-zA-Z0-9]{15,18}/commitment$`, 'i');
|
|
731
|
+
const FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/campaign/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
732
|
+
const FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/commitment/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
731
733
|
const connect = [
|
|
732
734
|
generateAdapter('get', CONNECT_BASE_URI, NOTIFICATION_SERVICE_CONFIG_PATH, 'NotificationServiceConnectFamilyController.getNotificationServiceConfig'),
|
|
733
735
|
generateAdapter('post', CONNECT_BASE_URI, AI_ACCELERATOR_RECOMMENDATIONS, 'AIAcceleratorConnectFamilyController.fetchRecommendations'),
|
|
@@ -1260,6 +1262,8 @@ const automationRules = [
|
|
|
1260
1262
|
];
|
|
1261
1263
|
const fundraising = [
|
|
1262
1264
|
generateAdapter('get', FUNDRAISING_BASE_URI, FUNDRAISING_GIFT_COMMITMENT_PATH, 'IndustriesFundraisingOperationsFamilyController.getGiftCommitments'),
|
|
1265
|
+
generateAdapter('get', FUNDRAISING_BASE_URI, FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH, 'IndustriesFundraisingOperationsFamilyController.getCampaignDefaultDesignations'),
|
|
1266
|
+
generateAdapter('get', FUNDRAISING_BASE_URI, FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH, 'IndustriesFundraisingOperationsFamilyController.getCommitmentDefaultDesignations'),
|
|
1263
1267
|
];
|
|
1264
1268
|
registerApiFamilyRoutes(updateQuote);
|
|
1265
1269
|
registerApiFamilyRoutes(connect);
|
|
@@ -2902,4 +2906,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
2902
2906
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
2903
2907
|
|
|
2904
2908
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
2905
|
-
// version: 1.
|
|
2909
|
+
// version: 1.123.1-553e88f85
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.123.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-network-aura"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@luvio/engine": "0.
|
|
37
|
+
"@luvio/engine": "0.138.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@salesforce/lds-adapters-uiapi": "*",
|