@salesforce/lds-network-aura 1.287.0-dev14 → 1.287.0-dev16
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 -1
- package/package.json +7 -7
package/dist/ldsNetwork.js
CHANGED
|
@@ -1093,6 +1093,7 @@ const ENERGY_UTILITIES_PROGRAMS_GET_PROGRAM_APPLICATIONS_PATH = new RegExp(`${EN
|
|
|
1093
1093
|
const KNOWLEDGE_ARTICLE_VIEW_STAT_PATH = new RegExp(`${CONNECT_BASE_URI}/knowledge/article/view-stat`, 'i');
|
|
1094
1094
|
const CONVERSATION_RUNTIME_PROXY_PATH = new RegExp(`${CONNECT_BASE_URI}/conversation-runtime-proxy`);
|
|
1095
1095
|
const COPILOT_LLM_FEEDBACK_PATH = new RegExp(`${CONNECT_BASE_URI}/copilot/feedback`);
|
|
1096
|
+
const COPILOT_FOLLOWUP_ACTIONS_PATH = new RegExp(`${CONNECT_BASE_URI}/follow-up-actions(\\?.*)?$`, 'i');
|
|
1096
1097
|
const COPILOT_RECOMMENDATION_PATH = new RegExp(`${CONNECT_BASE_URI}/recommended-plan-templates/([A-Z0-9_]){1,80}/([A-Z0-9_]){1,80}$`, 'i');
|
|
1097
1098
|
const COPILOT_RECOMMENDED_ACTIONS_PATH = new RegExp(`${CONNECT_BASE_URI}/recommended-actions(\\?.*)?$`, 'i');
|
|
1098
1099
|
const HARMONIZE_INVOICE_DRAFT_TO_POSTED_PATH = new RegExp(`${COMMERCE_BASE_URI}/invoicing/invoices/collection/actions/post`, 'i');
|
|
@@ -2365,6 +2366,7 @@ const conversationRuntimeProxy = [
|
|
|
2365
2366
|
generateAdapter('get', CONNECT_BASE_URI, CONVERSATION_RUNTIME_PROXY_PATH, 'ConversationRuntimeProxyController.getBotId'),
|
|
2366
2367
|
generateAdapter('post', CONNECT_BASE_URI, CONVERSATION_RUNTIME_PROXY_PATH, 'ConversationRuntimeProxyController.sendMessage', 'postBody'),
|
|
2367
2368
|
generateAdapter('get', CONNECT_BASE_URI, COPILOT_RECOMMENDATION_PATH, 'ConversationRuntimeProxyController.getRecommendedPlanTemplates'),
|
|
2369
|
+
generateAdapter('post', CONNECT_BASE_URI, COPILOT_FOLLOWUP_ACTIONS_PATH, 'ConversationRuntimeProxyController.getFollowUpActions', 'postBody'),
|
|
2368
2370
|
generateAdapter('get', CONNECT_BASE_URI, COPILOT_RECOMMENDED_ACTIONS_PATH, 'ConversationRuntimeProxyController.getRecommendedActions'),
|
|
2369
2371
|
generateAdapter('post', CONNECT_BASE_URI, COPILOT_LLM_FEEDBACK_PATH, 'ConversationRuntimeProxyController.submitFeedback', 'submitFeedback'),
|
|
2370
2372
|
];
|
|
@@ -4352,4 +4354,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
|
|
|
4352
4354
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
4353
4355
|
|
|
4354
4356
|
export { main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
4355
|
-
// version: 1.287.0-
|
|
4357
|
+
// version: 1.287.0-dev16-db839640ab
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-network-aura",
|
|
3
|
-
"version": "1.287.0-
|
|
3
|
+
"version": "1.287.0-dev16",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS Network Adapter for Aura Runtime",
|
|
6
6
|
"main": "dist/ldsNetwork.js",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-network-aura"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@luvio/engine": "0.154.17-
|
|
37
|
+
"@luvio/engine": "0.154.17-dev3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.287.0-
|
|
41
|
-
"@salesforce/lds-aura-storage": "^1.287.0-
|
|
42
|
-
"@salesforce/lds-environment-settings": "^1.287.0-
|
|
43
|
-
"@salesforce/lds-instrumentation": "^1.287.0-
|
|
44
|
-
"@salesforce/lds-network-adapter": "^1.287.0-
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.287.0-dev16",
|
|
41
|
+
"@salesforce/lds-aura-storage": "^1.287.0-dev16",
|
|
42
|
+
"@salesforce/lds-environment-settings": "^1.287.0-dev16",
|
|
43
|
+
"@salesforce/lds-instrumentation": "^1.287.0-dev16",
|
|
44
|
+
"@salesforce/lds-network-adapter": "^1.287.0-dev16"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../package.json"
|