@salesforce/lds-network-aura 1.130.10 → 1.131.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.
@@ -712,6 +712,7 @@ const INDUSTRIES_CONTEXT_NODE_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/con
712
712
  const DATALOADING_FEATURE_OBJECTS_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/([A-Za-z0-9_]){5,255}/objects`, 'i');
713
713
  const GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/recipe`, 'i');
714
714
  const CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/recipe/mapping`, 'i');
715
+ const GET_INDUSTRIES_PRICING_SYNC = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/sync`, 'i');
715
716
  function generateAdapter(method, baseUri, pathRegex, controller) {
716
717
  return {
717
718
  method,
@@ -1290,6 +1291,7 @@ const industriesContext = [
1290
1291
  const industriesPricing = [
1291
1292
  generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH, 'PricingResourceFamilyController.getRecipeLookupTableMapping'),
1292
1293
  generateAdapter('post', CONNECT_BASE_URI, CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH, 'PricingResourceFamilyController.createPricingRecipeMapping'),
1294
+ generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_SYNC, 'PricingResourceFamilyController.syncPricingData'),
1293
1295
  ];
1294
1296
  const updateQuote = [
1295
1297
  generateAdapter('post', COMMERCE_BASE_URI, REVENUE_UPDATE_PLACE_QUOTE_PATH, 'PlaceQuoteController.placeQuote'),
@@ -2951,4 +2953,4 @@ function auraNetworkAdapter(resourceRequest) {
2951
2953
  var main = platformNetworkAdapter(auraNetworkAdapter);
2952
2954
 
2953
2955
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
2954
- // version: 1.130.10-0fac4c295
2956
+ // version: 1.131.0-3bc4b5491
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.130.10",
3
+ "version": "1.131.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",