@salesforce/lds-network-aura 1.262.4 → 1.263.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 +3 -2
- package/package.json +6 -6
package/dist/ldsNetwork.js
CHANGED
|
@@ -892,7 +892,7 @@ const GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_U
|
|
|
892
892
|
const CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/recipe/mapping`, 'i');
|
|
893
893
|
const GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/sync/([A-Za-z0-9_]){5,255}`, 'i');
|
|
894
894
|
const CREATE_INDUSTRIES_PRICING_VERSIONED_REVISE_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/versioned-revise-details`, 'i');
|
|
895
|
-
const GET_INDUSTRIES_PRICING_WATERFALL = new RegExp(`${CONNECT_BASE_URI}/core-pricing/waterfall/([A-Za-z0-9]){15,24}/([A-Za-z0-9]){
|
|
895
|
+
const GET_INDUSTRIES_PRICING_WATERFALL = new RegExp(`${CONNECT_BASE_URI}/core-pricing/waterfall/([A-Za-z0-9]){15,24}/([A-Za-z0-9]){1,50}$`, 'i');
|
|
896
896
|
const VALIDATE_PRICING_FORMULA = new RegExp(`${CONNECT_BASE_URI}/core-pricing/formula/validate`, 'i');
|
|
897
897
|
const INDUSTRIES_PRICING_PRICING_ACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/pricing-action`, 'i');
|
|
898
898
|
const INDUSTRIES_PRICING_PRICING_WITH_ID_ACTION_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/pricing-action/([A-Za-z0-9]){15,18}$`, 'i');
|
|
@@ -1883,6 +1883,7 @@ const knowledge = [
|
|
|
1883
1883
|
generateAdapter('patch', CONNECT_BASE_URI, KNOWLEDGE_ARTICLE_VIEW_STAT_PATH, 'KnowledgeController.updateViewStat', 'articleViewStatInput'),
|
|
1884
1884
|
];
|
|
1885
1885
|
const conversationRuntimeProxy = [
|
|
1886
|
+
generateAdapter('get', CONNECT_BASE_URI, CONVERSATION_RUNTIME_PROXY_PATH, 'ConversationRuntimeProxyController.getBotId'),
|
|
1886
1887
|
generateAdapter('post', CONNECT_BASE_URI, CONVERSATION_RUNTIME_PROXY_PATH, 'ConversationRuntimeProxyController.sendMessage', 'postBody'),
|
|
1887
1888
|
];
|
|
1888
1889
|
registerApiFamilyRoutes(homeHealth);
|
|
@@ -3755,4 +3756,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
3755
3756
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3756
3757
|
|
|
3757
3758
|
export { main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3758
|
-
// version: 1.
|
|
3759
|
+
// version: 1.263.0-fa3f79648
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.263.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@luvio/engine": "0.154.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-aura-storage": "^1.
|
|
42
|
-
"@salesforce/lds-environment-settings": "^1.
|
|
43
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.263.0",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.263.0",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.263.0",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.263.0",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.263.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|