@salesforce/lds-network-aura 1.228.1 → 1.229.0-dev2
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 +10 -12
- package/package.json +6 -6
package/dist/ldsNetwork.js
CHANGED
|
@@ -73,7 +73,7 @@ const INDUSTRIES_BASE_URI = `${BASE_URI}/industries`;
|
|
|
73
73
|
const MEDIA_ADSALES_BASE_URI = `${CONNECT_BASE_URI}/media`;
|
|
74
74
|
const EINSTEIN_BASE_URI = `${BASE_URI}/einstein`;
|
|
75
75
|
const ECI_CONVERSATION_BASE_URI = `${BASE_URI}/conversation`;
|
|
76
|
-
const COMMERCE_STORE_MANAGEMENT_BASE_URI = `${COMMERCE_BASE_URI}/management/
|
|
76
|
+
const COMMERCE_STORE_MANAGEMENT_BASE_URI = `${COMMERCE_BASE_URI}/management/webstores`;
|
|
77
77
|
|
|
78
78
|
function getStatusText(status) {
|
|
79
79
|
switch (status) {
|
|
@@ -787,12 +787,11 @@ const INDUSTRIES_CONTEXT_SERVICE_ATTRIBUTE_PATH = new RegExp(`${CONNECT_BASE_URI
|
|
|
787
787
|
const INDUSTRIES_CONTEXT_SERVICE_NODE_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/context-mappings/([A-Z0-9]){15,18}/context-node-mappings/([A-Z0-9]){1,28}$`, 'i');
|
|
788
788
|
const CREATE_INDUSTRIES_CONTEXT_NODE_MAPPINGS_PATH = new RegExp(`${CONNECT_BASE_URI}/context-mappings/([A-Za-z0-9]){15,18}/context-node-mappings$`, 'i');
|
|
789
789
|
const DATALOADING_FEATURE_OBJECTS_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/([A-Za-z0-9_]){5,255}/objects`, 'i');
|
|
790
|
-
const GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/
|
|
791
|
-
const CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/
|
|
792
|
-
const GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH = new RegExp(`${CONNECT_BASE_URI}/
|
|
793
|
-
const CREATE_INDUSTRIES_PRICING_VERSIONED_REVISE_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/
|
|
794
|
-
const
|
|
795
|
-
const GET_INDUSTRIES_PRICING_WATERFALL2 = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/waterfall/([A-Za-z0-9]){15,18}/([A-Za-z0-9]){15,18}$`, 'i');
|
|
790
|
+
const GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/recipe`, 'i');
|
|
791
|
+
const CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/recipe/mapping`, 'i');
|
|
792
|
+
const GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/sync/([A-Za-z0-9_]){5,255}`, 'i');
|
|
793
|
+
const CREATE_INDUSTRIES_PRICING_VERSIONED_REVISE_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/versioned-revise-details`, 'i');
|
|
794
|
+
const GET_INDUSTRIES_PRICING_WATERFALL = new RegExp(`${CONNECT_BASE_URI}/core-pricing/waterfall/([A-Za-z0-9]){15,18}/([A-Za-z0-9]){15,18}$`, 'i');
|
|
796
795
|
function generateAdapter(method, baseUri, pathRegex, controller, bodyParamName) {
|
|
797
796
|
return {
|
|
798
797
|
method,
|
|
@@ -862,7 +861,7 @@ const POST_AVAILS_CALENDAR_CONTENDING = new RegExp(`${MEDIA_ADSALES_BASE_URI}/av
|
|
|
862
861
|
const GET_AVAILS_CALENDAR_CONFIGS = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/runtimeConfig`, 'i');
|
|
863
862
|
const EINSTEIN_LLM_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/prompt/generations`, 'i');
|
|
864
863
|
const EINSTEIN_PROMPT_TEMPLATE_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/generations`, 'i');
|
|
865
|
-
const DOCUMENT_MATRIX_FETCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/document-matrix/
|
|
864
|
+
const DOCUMENT_MATRIX_FETCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/document-matrix/document-decision/([A-Za-z0-9]){1,18}$`, 'i');
|
|
866
865
|
const NEXTGENSALESAGREEMENTPRICE_PATH = new RegExp(`${CONNECT_BASE_URI}/salesagreements/price`, 'i');
|
|
867
866
|
const COMMERCE_STORE_MANAGEMENT_CONFIGURE_PRODUCT_PRICING_PATH = new RegExp(`${COMMERCE_STORE_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/configureProductPricing`, 'i');
|
|
868
867
|
const COMMERCE_STORE_MANAGEMENT_GET_PRODUCT_PRICING_PATH = new RegExp(`${COMMERCE_STORE_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/getProductPricing`, 'i');
|
|
@@ -1048,7 +1047,7 @@ const commerce = [
|
|
|
1048
1047
|
generateAdapter('post', COMMERCE_BASE_URI, PRODUCT_SEARCH_PATH, 'CommerceProductSearchController.productSearch'),
|
|
1049
1048
|
];
|
|
1050
1049
|
const commerce_management = [
|
|
1051
|
-
generateAdapter('get', COMMERCE_BASE_URI, GET_MANAGEMENT_CHANNELS_PATH, '
|
|
1050
|
+
generateAdapter('get', COMMERCE_BASE_URI, GET_MANAGEMENT_CHANNELS_PATH, 'ICommerceManagementController.getChannels'),
|
|
1052
1051
|
];
|
|
1053
1052
|
const commerce_extension = [
|
|
1054
1053
|
generateAdapter('get', COMMERCE_EXTENSION_BASE_URI, GET_EXTENSIONS_PATH, 'CommerceExtensionFamilyController.getExtensions'),
|
|
@@ -1498,8 +1497,7 @@ const industriesPricing = [
|
|
|
1498
1497
|
generateAdapter('post', CONNECT_BASE_URI, CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH, 'PricingResourceFamilyController.createPricingRecipeMapping'),
|
|
1499
1498
|
generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH, 'PricingResourceFamilyController.syncPricingData'),
|
|
1500
1499
|
generateAdapter('post', CONNECT_BASE_URI, CREATE_INDUSTRIES_PRICING_VERSIONED_REVISE_DETAILS_PATH, 'PricingResourceFamilyController.updateAndPersistAdjustmentEntity'),
|
|
1501
|
-
generateAdapter('get', CONNECT_BASE_URI,
|
|
1502
|
-
generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_WATERFALL2, 'PricingResourceFamilyController.requestPricingWaterFallOutputResponse2'),
|
|
1500
|
+
generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_WATERFALL, 'PricingResourceFamilyController.requestPricingWaterFallOutputResponse'),
|
|
1503
1501
|
];
|
|
1504
1502
|
const updateQuote = [
|
|
1505
1503
|
generateAdapter('post', COMMERCE_BASE_URI, REVENUE_UPDATE_PLACE_QUOTE_PATH, 'PlaceQuoteController.placeQuote'),
|
|
@@ -3252,4 +3250,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3252
3250
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3253
3251
|
|
|
3254
3252
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3255
|
-
// version: 1.
|
|
3253
|
+
// version: 1.229.0-dev2-e9832aaff
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.229.0-dev2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"@luvio/engine": "0.145.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "
|
|
41
|
-
"@salesforce/lds-aura-storage": "
|
|
42
|
-
"@salesforce/lds-environment-settings": "
|
|
43
|
-
"@salesforce/lds-instrumentation": "
|
|
44
|
-
"@salesforce/lds-network-adapter": "
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "1.229.0-dev2",
|
|
41
|
+
"@salesforce/lds-aura-storage": "1.229.0-dev2",
|
|
42
|
+
"@salesforce/lds-environment-settings": "1.229.0-dev2",
|
|
43
|
+
"@salesforce/lds-instrumentation": "1.229.0-dev2",
|
|
44
|
+
"@salesforce/lds-network-adapter": "1.229.0-dev2"
|
|
45
45
|
}
|
|
46
46
|
}
|