@salesforce/lds-network-aura 1.242.1 → 1.243.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 +5 -1
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -864,6 +864,7 @@ const POST_AVAILS_CALENDAR_CONTENDING = new RegExp(`${MEDIA_ADSALES_BASE_URI}/av
|
|
|
864
864
|
const GET_AVAILS_CALENDAR_CONFIGS = new RegExp(`${MEDIA_ADSALES_BASE_URI}/availsCalendar/runtimeConfig`, 'i');
|
|
865
865
|
const EINSTEIN_LLM_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/prompt/generations`, 'i');
|
|
866
866
|
const EINSTEIN_PROMPT_TEMPLATE_GENERATIONS_PATH = new RegExp(`${EINSTEIN_BASE_URI}/prompt-templates/([A-Za-z0-9_]){1,255}/generations`, 'i');
|
|
867
|
+
const EINSTEIN_LLM_FEEDBACK_PATH = new RegExp(`${EINSTEIN_BASE_URI}/llm/feedback`, 'i');
|
|
867
868
|
const DOCUMENT_MATRIX_FETCH_RESULTS = new RegExp(`${CONNECT_BASE_URI}/document-matrix/document-decision/([A-Za-z0-9]){1,18}$`, 'i');
|
|
868
869
|
const NEXTGENSALESAGREEMENTPRICE_PATH = new RegExp(`${CONNECT_BASE_URI}/salesagreements/price`, 'i');
|
|
869
870
|
const COMMERCE_STORE_MANAGEMENT_CONFIGURE_PRODUCT_PRICING_PATH = new RegExp(`${COMMERCE_STORE_MANAGEMENT_BASE_URI}/([A-Z0-9]){15,18}/configureProductPricing`, 'i');
|
|
@@ -1549,6 +1550,7 @@ const instantPricing = [
|
|
|
1549
1550
|
const einstein = [
|
|
1550
1551
|
generateAdapter('post', EINSTEIN_BASE_URI, EINSTEIN_LLM_GENERATIONS_PATH, 'EinsteinLLMController.generateMessages'),
|
|
1551
1552
|
generateAdapter('post', EINSTEIN_BASE_URI, EINSTEIN_PROMPT_TEMPLATE_GENERATIONS_PATH, 'EinsteinLLMController.generateMessagesForPromptTemplate'),
|
|
1553
|
+
generateAdapter('post', EINSTEIN_BASE_URI, EINSTEIN_LLM_FEEDBACK_PATH, 'EinsteinLLMController.feedback'),
|
|
1552
1554
|
];
|
|
1553
1555
|
const nextGenSalesAgreementPrice = [
|
|
1554
1556
|
generateAdapter('post', CONNECT_BASE_URI, NEXTGENSALESAGREEMENTPRICE_PATH, 'NextGenerationSalesAgreementPriceController.getNextGenSalesAgreementPrice'),
|
|
@@ -2342,6 +2344,7 @@ function updateListInfoByName(resourceRequest) {
|
|
|
2342
2344
|
scope: body.scope,
|
|
2343
2345
|
visibility: body.visibility,
|
|
2344
2346
|
displayColumns: body.displayColumns,
|
|
2347
|
+
listShares: body.listShares,
|
|
2345
2348
|
},
|
|
2346
2349
|
}, resourceRequest);
|
|
2347
2350
|
return dispatchAction(UiApiListsController.UpdateListInfoByName, params);
|
|
@@ -2383,6 +2386,7 @@ function createListInfo(resourceRequest) {
|
|
|
2383
2386
|
listViewApiName: body.listViewApiName,
|
|
2384
2387
|
scope: body.scope,
|
|
2385
2388
|
visibility: body.visibility,
|
|
2389
|
+
listShares: body.listShares,
|
|
2386
2390
|
},
|
|
2387
2391
|
}, resourceRequest);
|
|
2388
2392
|
return dispatchAction(UiApiListsController.CreateListInfo, params);
|
|
@@ -3284,4 +3288,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3284
3288
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3285
3289
|
|
|
3286
3290
|
export { main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3287
|
-
// version: 1.
|
|
3291
|
+
// version: 1.243.0-87f38263e
|