@salesforce/lds-network-aura 1.124.9 → 1.126.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 +11 -2
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -728,6 +728,9 @@ const GET_AVAILABLE_TIME_SLOTS = new RegExp(`${EDUCATION_BASE_URI}/appointment-b
|
|
|
728
728
|
const CREATE_CARE_PLANS = new RegExp(`${EDUCATION_BASE_URI}/careplan/bulk`, 'i');
|
|
729
729
|
const APPLY_REMINDER_PATH = new RegExp(`${CONNECT_BASE_URI}/automated-actions/reminder/apply`, 'i');
|
|
730
730
|
const CPQ_PREVIEW_PATH = new RegExp(`${CPQ_BASE_URI}/preview`, 'i');
|
|
731
|
+
const CPQ_PRODUCT_LIST_PATH = new RegExp(`${CPQ_BASE_URI}/products`, 'i');
|
|
732
|
+
const CPQ_PRODUCT_DETAILS_PATH = new RegExp(`${CPQ_BASE_URI}/products/([A-Za-z0-9]){15,18}$`, 'i');
|
|
733
|
+
const CPQ_PRODUCT_SEARCH_PATH = new RegExp(`${CPQ_BASE_URI}/products/search`, 'i');
|
|
731
734
|
const FUNDRAISING_GIFT_COMMITMENT_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/donor/[a-zA-Z0-9]{15,18}/commitment$`, 'i');
|
|
732
735
|
const FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/campaign/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
733
736
|
const FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH = new RegExp(`${FUNDRAISING_BASE_URI}/commitment/[a-zA-Z0-9]{15,18}/default-designations$`, 'i');
|
|
@@ -873,7 +876,6 @@ const connect = [
|
|
|
873
876
|
generateAdapter('get', GROUP_BASE_URI, GET_HOUSEHOLD_FIELDS_PATH, 'GroupFamilyController.getAllGroupFields'),
|
|
874
877
|
generateAdapter('post', GROUP_BASE_URI, MERGE_GROUP_PATH, 'GroupFamilyController.mergeGroup'),
|
|
875
878
|
generateAdapter('post', DATA_PROVIDER_BASE_URI, DATA_PROVIDER_OUTPUT_SCHEMA_PATH, 'DataProviderController.getDataProviderSchema'),
|
|
876
|
-
generateAdapter('post', CPQ_BASE_URI, CPQ_PREVIEW_PATH, 'ICpqConnectFeatureController.preview'),
|
|
877
879
|
generateAdapter('get', CONNECT_BASE_URI, LIGHTNING_CARDS_ACTIVATION_PATH, 'LightningCardsActivationController.getCardActivation'),
|
|
878
880
|
];
|
|
879
881
|
const commerce = [
|
|
@@ -1269,6 +1271,12 @@ const fundraising = [
|
|
|
1269
1271
|
generateAdapter('get', FUNDRAISING_BASE_URI, FUNDRAISING_CAMPAIGN_DEFAULT_DESIGNATION_PATH, 'IndustriesFundraisingOperationsFamilyController.getCampaignDefaultDesignations'),
|
|
1270
1272
|
generateAdapter('get', FUNDRAISING_BASE_URI, FUNDRAISING_COMMITMENT_DEFAULT_DESIGNATION_PATH, 'IndustriesFundraisingOperationsFamilyController.getCommitmentDefaultDesignations'),
|
|
1271
1273
|
];
|
|
1274
|
+
const cpq = [
|
|
1275
|
+
generateAdapter('post', CPQ_BASE_URI, CPQ_PREVIEW_PATH, 'ICpqConnectFeatureController.preview'),
|
|
1276
|
+
generateAdapter('post', CPQ_BASE_URI, CPQ_PRODUCT_DETAILS_PATH, 'ICpqConnectFeatureController.productDetails'),
|
|
1277
|
+
generateAdapter('post', CPQ_BASE_URI, CPQ_PRODUCT_SEARCH_PATH, 'ICpqConnectFeatureController.SearchProductsList'),
|
|
1278
|
+
generateAdapter('post', CPQ_BASE_URI, CPQ_PRODUCT_LIST_PATH, 'ICpqConnectFeatureController.productList'),
|
|
1279
|
+
];
|
|
1272
1280
|
registerApiFamilyRoutes(updateQuote);
|
|
1273
1281
|
registerApiFamilyRoutes(connect);
|
|
1274
1282
|
registerApiFamilyRoutes(connectInternal);
|
|
@@ -1317,6 +1325,7 @@ registerApiFamilyRoutes(education);
|
|
|
1317
1325
|
registerApiFamilyRoutes(automationRules);
|
|
1318
1326
|
registerApiFamilyRoutes(fundraising);
|
|
1319
1327
|
registerApiFamilyRoutes(auditTrailExport);
|
|
1328
|
+
registerApiFamilyRoutes(cpq);
|
|
1320
1329
|
|
|
1321
1330
|
const UI_API_BASE_URI$1 = `${BASE_URI}/ui-api`;
|
|
1322
1331
|
const ACTION_CONFIG = {
|
|
@@ -2911,4 +2920,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
2911
2920
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
2912
2921
|
|
|
2913
2922
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
2914
|
-
// version: 1.
|
|
2923
|
+
// version: 1.126.0-86fa082d1
|