@salesforce/lds-network-aura 1.183.0 → 1.185.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 +48 -3
- package/package.json +1 -1
package/dist/ldsNetwork.js
CHANGED
|
@@ -716,6 +716,7 @@ const EPC_PRODUCT_ATTRIBUTE_DEFINITION_PATH = new RegExp(`${EPC_BASE_URI}/produc
|
|
|
716
716
|
const EPC_DEACTIVATE_PATH = new RegExp(`${EPC_BASE_URI}/actions/deactivate`, 'i');
|
|
717
717
|
const EPC_PRODUCT_FLOW_PATH = new RegExp(`${EPC_BASE_URI}/products/([A-Z0-9]){15,18}/flow$`, 'i');
|
|
718
718
|
const EPC_PRODUCT_ATTRIBUTES_PATH = new RegExp(`${EPC_BASE_URI}/product/([A-Z0-9]){15,18}/attributes$`, 'i');
|
|
719
|
+
const EPC_PRODUCT_BY_ID_PATH = new RegExp(`${EPC_BASE_URI}/products/([A-Z0-9]){15,18}$`, 'i');
|
|
719
720
|
const GET_ERI_DIGEST_PATH = new RegExp(`${ERI_BASE_URI}/digest`, 'i');
|
|
720
721
|
const NOTIFICATION_SERVICE_CONFIG_PATH = new RegExp(`${CONNECT_BASE_URI}/notification_service/config`, 'i');
|
|
721
722
|
const GET_PEOPLE_API_PATH = new RegExp(`${PEOPLE_API_BASE_URI}`, 'i');
|
|
@@ -809,6 +810,11 @@ const CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs`, 'i');
|
|
|
809
810
|
const GET_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
810
811
|
const DELETE_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/([A-Z0-9_]){1,80}$`, 'i');
|
|
811
812
|
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');
|
|
813
|
+
const CATALOG_ITEM_FOR_COMMUNITY_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/category-network/9cn([a-zA-Z0-9]){12,15}/catalog-item`, 'i');
|
|
814
|
+
const CATALOG_ITEM_PATH = new RegExp(`${CONNECT_BASE_URI}/category-network/9cn([a-zA-Z0-9]){12,15}/catalog-item`, 'i');
|
|
815
|
+
const CATEGORY_NETWORKS_PATH = new RegExp(`${CONNECT_BASE_URI}/communities/([a-zA-Z0-9]){15,18}/data-category/category-network`, 'i');
|
|
816
|
+
const CATALOG_ITEM_BY_CATEGORY_PATH = new RegExp(`${CONNECT_BASE_URI}/data-category/category-group/([a-zA-Z]){0,80}/category/([a-zA-Z0-9]){0,80}/catalog-item`, 'i');
|
|
817
|
+
const CATEGORY_GROUP_PATH = new RegExp(`${CONNECT_BASE_URI}/data-category/category-group`);
|
|
812
818
|
const PUT_CDP_ADG_PATH = new RegExp(`${CDP_BASE_URI}/application-data-graphs/retry`, 'i');
|
|
813
819
|
const AUTOMOTIVE_INV_MGMT_PATH = new RegExp(`${CONNECT_BASE_URI}/inventory-visibility/actions`, 'i');
|
|
814
820
|
const connect = [
|
|
@@ -966,6 +972,7 @@ const connect = [
|
|
|
966
972
|
generateAdapter('patch', EPC_BASE_URI, EPC_DEACTIVATE_PATH, 'EpcConnectFamilyController.deactivate'),
|
|
967
973
|
generateAdapter('get', EPC_BASE_URI, EPC_PRODUCT_FLOW_PATH, 'EpcConnectFamilyController.getProductFlowByProductId'),
|
|
968
974
|
generateAdapter('get', EPC_BASE_URI, EPC_PRODUCT_ATTRIBUTES_PATH, 'EpcConnectFamilyController.fetchProductAttributesByProductId'),
|
|
975
|
+
generateAdapter('get', EPC_BASE_URI, EPC_PRODUCT_BY_ID_PATH, 'EpcConnectFamilyController.fetchEpcProductById'),
|
|
969
976
|
generateAdapter('get', GROUP_BASE_URI, GET_ALL_RELATED_ENTITY_PATH, 'GroupFamilyController.getAllRelatedEntity'),
|
|
970
977
|
generateAdapter('post', GROUP_BASE_URI, CREATE_GROUP_PATH, 'GroupFamilyController.createHousehold'),
|
|
971
978
|
generateAdapter('get', GROUP_BASE_URI, GET_HOUSEHOLD_FIELDS_PATH, 'GroupFamilyController.getAllGroupFields'),
|
|
@@ -1028,7 +1035,7 @@ const serviceAutomationServiceCatalog = [
|
|
|
1028
1035
|
},
|
|
1029
1036
|
},
|
|
1030
1037
|
];
|
|
1031
|
-
const
|
|
1038
|
+
const categoryNetwork = [
|
|
1032
1039
|
{
|
|
1033
1040
|
method: 'get',
|
|
1034
1041
|
predicate: (path) => KNOWLEDGE_ARTICLE_PATH.test(path),
|
|
@@ -1036,6 +1043,43 @@ const dataCategory = [
|
|
|
1036
1043
|
controller: 'CategoryNetworkController.getArticlesForCategory',
|
|
1037
1044
|
},
|
|
1038
1045
|
},
|
|
1046
|
+
{
|
|
1047
|
+
method: 'get',
|
|
1048
|
+
predicate: (path) => CATALOG_ITEM_FOR_COMMUNITY_PATH.test(path),
|
|
1049
|
+
transport: {
|
|
1050
|
+
controller: 'CategoryNetworkController.getServiceCatalogItemsForCommunity',
|
|
1051
|
+
},
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
method: 'get',
|
|
1055
|
+
predicate: (path) => CATALOG_ITEM_PATH.test(path),
|
|
1056
|
+
transport: {
|
|
1057
|
+
controller: 'CategoryNetworkController.getServiceCatalogItems',
|
|
1058
|
+
},
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
method: 'get',
|
|
1062
|
+
predicate: (path) => CATEGORY_NETWORKS_PATH.test(path),
|
|
1063
|
+
transport: {
|
|
1064
|
+
controller: 'CategoryNetworkController.getCategoryNetworks',
|
|
1065
|
+
},
|
|
1066
|
+
},
|
|
1067
|
+
];
|
|
1068
|
+
const dataCategory = [
|
|
1069
|
+
{
|
|
1070
|
+
method: 'get',
|
|
1071
|
+
predicate: (path) => CATALOG_ITEM_BY_CATEGORY_PATH.test(path),
|
|
1072
|
+
transport: {
|
|
1073
|
+
controller: 'DataCategoryController.getServiceCatalogItemsByCategory',
|
|
1074
|
+
},
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
method: 'get',
|
|
1078
|
+
predicate: (path) => CATEGORY_GROUP_PATH.test(path),
|
|
1079
|
+
transport: {
|
|
1080
|
+
controller: 'DataCategoryController.getCategoryGroups',
|
|
1081
|
+
},
|
|
1082
|
+
},
|
|
1039
1083
|
];
|
|
1040
1084
|
const learningContentPlatform = [
|
|
1041
1085
|
generateAdapter('get', LEARNING_CONTENT_PLATFORM_BASE_URI, GET_LEARNING_CONTENT_PLATFORM_RELATED_LIST_PATH, 'LearningContentPlatformController.getFeaturedItemsRelatedList'),
|
|
@@ -1232,7 +1276,7 @@ const salesExcellence = [
|
|
|
1232
1276
|
generateAdapter('get', CONNECT_BASE_URI, SALES_EXCELLENCE_ASSIGNED_ACTIONABLE_LISTS, 'IndustriesActionableListMemberController.getAssignedActionableLists'),
|
|
1233
1277
|
generateAdapter('get', CONNECT_BASE_URI, SALES_EXCELLENCE_GET_ACTIONABLE_LIST_METADATA, 'IndustriesActionableListMemberController.getActionableListMetadata'),
|
|
1234
1278
|
generateAdapter('get', CONNECT_BASE_URI, SALES_EXCELLENCE_GET_ALM_QUEUES, 'IndustriesActionableListMemberController.getALMQueues'),
|
|
1235
|
-
generateAdapter('post', CONNECT_BASE_URI, SALES_EXCELLENCE_GET_ACTIONABLE_LIST_KPI_BAR, 'IndustriesActionableListMemberController.
|
|
1279
|
+
generateAdapter('post', CONNECT_BASE_URI, SALES_EXCELLENCE_GET_ACTIONABLE_LIST_KPI_BAR, 'IndustriesActionableListMemberController.generateActionableListKpiBarResults'),
|
|
1236
1280
|
];
|
|
1237
1281
|
const cdpSalesExcellence = [
|
|
1238
1282
|
generateAdapter('post', CONNECT_BASE_URI, CDP_SALES_EXCELLENCE_SEGMENT_PREVIEW, 'CdpSalesExcellenceController.createObjectsDataFromSelectedSegment'),
|
|
@@ -1443,6 +1487,7 @@ registerApiFamilyRoutes(analyticsPrivate);
|
|
|
1443
1487
|
registerApiFamilyRoutes(tableauEmbedding);
|
|
1444
1488
|
registerApiFamilyRoutes(scalecenter);
|
|
1445
1489
|
registerApiFamilyRoutes(serviceAutomationServiceCatalog);
|
|
1490
|
+
registerApiFamilyRoutes(categoryNetwork);
|
|
1446
1491
|
registerApiFamilyRoutes(dataCategory);
|
|
1447
1492
|
registerApiFamilyRoutes(flow);
|
|
1448
1493
|
registerApiFamilyRoutes(flowBuilder);
|
|
@@ -3106,4 +3151,4 @@ function auraNetworkAdapter(resourceRequest) {
|
|
|
3106
3151
|
var main = platformNetworkAdapter(auraNetworkAdapter);
|
|
3107
3152
|
|
|
3108
3153
|
export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
|
|
3109
|
-
// version: 1.
|
|
3154
|
+
// version: 1.185.0-d1c585e2a
|