@salesforce/lds-network-aura 1.180.0 → 1.181.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 +6 -1
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -810,6 +810,7 @@ const GET_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/([A
|
|
|
810
810
|
const DELETE_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
811
811
|
const KNOWLEDGE_ARTICLE_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/category-network/9cn([a-zA-Z0-9]){12,15}/knowledge-article`, 'i');
|
|
812
812
|
const PUT_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/retry`, 'i');
|
|
813
|
+
const AUTOMOTIVE_INV_MGMT_PATH = new RegExp(`${CONNECT_BASE_URI}/inventory-visibility/actions`, 'i');
|
|
813
814
|
const connect = [
|
|
814
815
|
generateAdapter('get', CONNECT_BASE_URI, NOTIFICATION_SERVICE_CONFIG_PATH, 'NotificationServiceConnectFamilyController.getNotificationServiceConfig'),
|
|
815
816
|
generateAdapter('post', CONNECT_BASE_URI, AI_ACCELERATOR_RECOMMENDATIONS, 'AIAcceleratorConnectFamilyController.fetchRecommendations'),
|
|
@@ -1428,6 +1429,9 @@ const cdp = [
|
|
|
1428
1429
|
generateAdapter('post', CDP_BASE_URI, CDP_ADG_PATH, 'CdpApplicationDataGraphController.createAdg'),
|
|
1429
1430
|
generateAdapter('put', CDP_BASE_URI, PUT_CDP_ADG_PATH, 'CdpApplicationDataGraphController.retryDataGraph'),
|
|
1430
1431
|
];
|
|
1432
|
+
const automotive = [
|
|
1433
|
+
generateAdapter('post', CONNECT_BASE_URI, AUTOMOTIVE_INV_MGMT_PATH, 'InventoryManagementActionsController.postInventoryManagementAction'),
|
|
1434
|
+
];
|
|
1431
1435
|
registerApiFamilyRoutes(updateQuote);
|
|
1432
1436
|
registerApiFamilyRoutes(connect);
|
|
1433
1437
|
registerApiFamilyRoutes(connectInternal);
|
|
@@ -1481,6 +1485,7 @@ registerApiFamilyRoutes(auditTrailExport);
|
|
|
1481
1485
|
registerApiFamilyRoutes(cpq);
|
|
1482
1486
|
registerApiFamilyRoutes(cdp);
|
|
1483
1487
|
registerApiFamilyRoutes(cdpSalesExcellence);
|
|
1488
|
+
registerApiFamilyRoutes(automotive);
|
|
1484
1489
|
|
|
1485
1490
|
const UI_API_BASE_URI$1 = `${BASE_URI}/ui-api`;
|
|
1486
1491
|
const ACTION_CONFIG = {
|
|
@@ -3101,4 +3106,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3101
3106
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3102
3107
|
|
|
3103
3108
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3104
|
-
// version: 1.
|
|
3109
|
+
// version: 1.181.0-ca3a0a3cc
|