@salesforce/lds-network-aura 1.228.1 → 1.229.0-dev1
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 -10
- 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,12 @@ 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 GET_INDUSTRIES_PRICING_WATERFALL1 = new RegExp(`${CONNECT_BASE_URI}/
|
|
795
|
-
const GET_INDUSTRIES_PRICING_WATERFALL2 = new RegExp(`${CONNECT_BASE_URI}/
|
|
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_WATERFALL1 = new RegExp(`${CONNECT_BASE_URI}/core-pricing/waterfall/([A-Za-z0-9]){15,18}$`, 'i');
|
|
795
|
+
const GET_INDUSTRIES_PRICING_WATERFALL2 = new RegExp(`${CONNECT_BASE_URI}/core-pricing/waterfall/([A-Za-z0-9]){15,18}/([A-Za-z0-9]){15,18}$`, 'i');
|
|
796
796
|
function generateAdapter(method, baseUri, pathRegex, controller, bodyParamName) {
|
|
797
797
|
return {
|
|
798
798
|
method,
|
|
@@ -862,7 +862,7 @@ const POST_AVAILS_CALENDAR_CONTENDING = new RegExp(`${MEDIA_ADSALES_BASE_URI}/av
|
|
|
862
862
|
const GET_AVAILS_CALENDAR_CONFIGS = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/runtimeConfig`, 'i');
|
|
863
863
|
const EINSTEIN_LLM_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/prompt/generations`, 'i');
|
|
864
864
|
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/
|
|
865
|
+
const DOCUMENT_MATRIX_FETCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/document-matrix/document-decision/([A-Za-z0-9]){1,18}$`, 'i');
|
|
866
866
|
const NEXTGENSALESAGREEMENTPRICE_PATH = new RegExp(`${CONNECT_BASE_URI}/salesagreements/price`, 'i');
|
|
867
867
|
const COMMERCE_STORE_MANAGEMENT_CONFIGURE_PRODUCT_PRICING_PATH = new RegExp(`${COMMERCE_STORE_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/configureProductPricing`, 'i');
|
|
868
868
|
const COMMERCE_STORE_MANAGEMENT_GET_PRODUCT_PRICING_PATH = new RegExp(`${COMMERCE_STORE_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/getProductPricing`, 'i');
|
|
@@ -1048,7 +1048,7 @@ const commerce = [
|
|
|
1048
1048
|
generateAdapter('post', COMMERCE_BASE_URI, PRODUCT_SEARCH_PATH, 'CommerceProductSearchController.productSearch'),
|
|
1049
1049
|
];
|
|
1050
1050
|
const commerce_management = [
|
|
1051
|
-
generateAdapter('get', COMMERCE_BASE_URI, GET_MANAGEMENT_CHANNELS_PATH, '
|
|
1051
|
+
generateAdapter('get', COMMERCE_BASE_URI, GET_MANAGEMENT_CHANNELS_PATH, 'ICommerceManagementController.getChannels'),
|
|
1052
1052
|
];
|
|
1053
1053
|
const commerce_extension = [
|
|
1054
1054
|
generateAdapter('get', COMMERCE_EXTENSION_BASE_URI, GET_EXTENSIONS_PATH, 'CommerceExtensionFamilyController.getExtensions'),
|
|
@@ -3252,4 +3252,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3252
3252
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3253
3253
|
|
|
3254
3254
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3255
|
-
// version: 1.
|
|
3255
|
+
// version: 1.229.0-dev1-f69d054a9
|
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-dev1",
|
|
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-dev1",
|
|
41
|
+
"@salesforce/lds-aura-storage": "1.229.0-dev1",
|
|
42
|
+
"@salesforce/lds-environment-settings": "1.229.0-dev1",
|
|
43
|
+
"@salesforce/lds-instrumentation": "1.229.0-dev1",
|
|
44
|
+
"@salesforce/lds-network-adapter": "1.229.0-dev1"
|
|
45
45
|
}
|
|
46
46
|
}
|