@salesforce/lds-network-aura 1.211.0 → 1.212.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.
@@ -52,7 +52,6 @@ const EPC_BASE_URI = `${CONNECT_BASE_URI}/epc`;
52
52
  const ERI_BASE_URI = `${CONNECT_BASE_URI}/eri`;
53
53
  const EXPERIENCE_MODEL_BASE_URI = `${CONNECT_BASE_URI}/experience-model`;
54
54
  const TABLEAU_EMBEDDING_BASE_URI = `${BASE_URI}/tableau`;
55
- const SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI = `${CONNECT_BASE_URI}/service-automation/service-catalog`;
56
55
  const PEOPLE_API_BASE_URI = `${BASE_URI}/people`;
57
56
  const SALES_EXCELLENCE_BASE_URI = `${CONNECT_BASE_URI}/sales-excellence`;
58
57
  const ENABLEMENT_BASE_URI = `${CONNECT_BASE_URI}/enablement`;
@@ -575,10 +574,6 @@ const CREATE_OBJECT_ALIAS_PATH = new RegExp(`${CONNECT_BASE_URI}/ruleengine/obje
575
574
  const ALIAS_FIELD_PATH = new RegExp(`${CONNECT_BASE_URI}/ruleengine/object-alias/([A-Z0-9]){1,18}`, 'i');
576
575
  const PROCESS_TYPE_PATH = new RegExp(`${CONNECT_BASE_URI}/ruleengine/processType/[A-Z0-9]`, 'i');
577
576
  const DECISION_MATRIX_ROWS_PATH = new RegExp(`${CONNECT_BASE_URI}/omnistudio/decision-matrices/([A-Z0-9]){1,18}/versions/([A-Z0-9]){1,18}/rows`, 'i');
578
- const SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_PATH = new RegExp(`${SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI}/communication/([A-Z0-9]){15,18}$`, 'i');
579
- const SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_CHANNEL_PATH = new RegExp(`${SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI}/communication/channels/([A-Z0-9]){15,18}$`, 'i');
580
- const SERVICE_AUTOMATION_SERVIRCE_CATALOG_MARK_CHANNEL_AS_READ_PATH = new RegExp(`${SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI}/communication/channels/([A-Z0-9]){15,18}/markAsRead$`, 'i');
581
- const SERVICE_AUTOMATION_SERVIRCE_CATALOG_CHANNEL_THREAD_CREATE_MESSAGE_AS_READ_PATH = new RegExp(`${SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI}/communication/channels/([A-Z0-9]){15,18}/threads/.+/messages$`, 'i');
582
577
  const SCALE_CENTER_GET_METRICS_PATH = new RegExp(`${SCALECENTER_BASE_URI}/metrics/query`, 'i');
583
578
  const GET_DECISION_MATRIC_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/omnistudio/decision-matrices/([A-Z0-9]){1,18}$`, 'i');
584
579
  const GET_DECISION_TABLE_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/omnistudio/decision-tables/([A-Z0-9]){15,18}$`, 'i');
@@ -805,6 +800,8 @@ const GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_U
805
800
  const CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/recipe/mapping`, 'i');
806
801
  const GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/sync/([A-Za-z0-9_]){5,255}`, 'i');
807
802
  const CREATE_INDUSTRIES_PRICING_VERSIONED_REVISE_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/versioned-revise-details`, 'i');
803
+ const GET_INDUSTRIES_PRICING_WATERFALL1 = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/waterfall/([A-Za-z0-9]){15,18}$`, 'i');
804
+ const GET_INDUSTRIES_PRICING_WATERFALL2 = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/waterfall/([A-Za-z0-9]){15,18}/([A-Za-z0-9]){15,18}$`, 'i');
808
805
  function generateAdapter(method, baseUri, pathRegex, controller, bodyParamName) {
809
806
  return {
810
807
  method,
@@ -1005,14 +1002,14 @@ const connect = [
1005
1002
  generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_CHECKIN_URI_PATH, 'ClmController.checkIn'),
1006
1003
  generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_UNLOCK_URI_PATH, 'ClmController.unlock'),
1007
1004
  generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_LOCK_URI_PATH, 'ClmController.lockContractDocumentVersion'),
1008
- generateAdapter('get', CLM_BASE_URI, CLM_CONTRACT_EXTERNAL_REVIEW_DOCUMENT_URI_PATH, 'ClmController.getExternalReviewDocument'),
1005
+ generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_EXTERNAL_REVIEW_DOCUMENT_URI_PATH, 'ClmController.createExternalReviewDocument'),
1009
1006
  generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_CHECKOUT_URI_PATH, 'ClmController.checkoutContractDocumentVersion'),
1010
1007
  generateAdapter('delete', CLM_BASE_URI, CLM_CONTENT_DOCUMENTS, 'ClmController.deleteAttachment'),
1011
1008
  generateAdapter('get', CLM_BASE_URI, CLM_CONTENT_DOCUMENTS, 'ClmController.getContentDocument'),
1012
1009
  generateAdapter('delete', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.deleteContractDocumentVersionReview'),
1013
1010
  generateAdapter('get', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.getContractDocumentVersionReview'),
1014
- generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.patchContractDocumentVersionReview'),
1015
- generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.postContractDocumentVersionReview'),
1011
+ generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.updateContractDocumentVersionReview'),
1012
+ generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.createContractDocumentVersionReview'),
1016
1013
  generateAdapter('get', CLM_BASE_URI, CLM_GET_DOCUMENT_GENERATION_PROCESS_PATH, 'ClmController.getDocumentGenerationProcessDetails'),
1017
1014
  generateAdapter('patch', CLM_BASE_URI, CLM_UPDATE_DOCUMENT_URI_PATH, 'ClmController.updateContractDocumentVersionWithTemplate'),
1018
1015
  generateAdapter('get', CLM_BASE_URI, CLM_GET_CONTRACT_ACTIONS_PATH, 'ClmController.getContractActions'),
@@ -1070,36 +1067,6 @@ const scalecenter = [
1070
1067
  },
1071
1068
  },
1072
1069
  ];
1073
- const serviceAutomationServiceCatalog = [
1074
- {
1075
- method: 'get',
1076
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_PATH.test(path),
1077
- transport: {
1078
- controller: 'ServiceAutomationServiceCatalogController.getCommunication',
1079
- },
1080
- },
1081
- {
1082
- method: 'get',
1083
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_CHANNEL_PATH.test(path),
1084
- transport: {
1085
- controller: 'ServiceAutomationServiceCatalogController.getCommunicationChannel',
1086
- },
1087
- },
1088
- {
1089
- method: 'post',
1090
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_MARK_CHANNEL_AS_READ_PATH.test(path),
1091
- transport: {
1092
- controller: 'ServiceAutomationServiceCatalogController.markCommunicationChannelAsRead',
1093
- },
1094
- },
1095
- {
1096
- method: 'post',
1097
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_CHANNEL_THREAD_CREATE_MESSAGE_AS_READ_PATH.test(path),
1098
- transport: {
1099
- controller: 'ServiceAutomationServiceCatalogController.createMessage',
1100
- },
1101
- },
1102
- ];
1103
1070
  const categoryNetwork = [
1104
1071
  {
1105
1072
  method: 'get',
@@ -1554,6 +1521,8 @@ const industriesPricing = [
1554
1521
  generateAdapter('post', CONNECT_BASE_URI, CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH, 'PricingResourceFamilyController.createPricingRecipeMapping'),
1555
1522
  generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH, 'PricingResourceFamilyController.syncPricingData'),
1556
1523
  generateAdapter('post', CONNECT_BASE_URI, CREATE_INDUSTRIES_PRICING_VERSIONED_REVISE_DETAILS_PATH, 'PricingResourceFamilyController.updateAndPersistAdjustmentEntity'),
1524
+ generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_WATERFALL1, 'PricingResourceFamilyController.requestPricingWaterFallOutputResponse1'),
1525
+ generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_WATERFALL2, 'PricingResourceFamilyController.requestPricingWaterFallOutputResponse2'),
1557
1526
  ];
1558
1527
  const updateQuote = [
1559
1528
  generateAdapter('post', COMMERCE_BASE_URI, REVENUE_UPDATE_PLACE_QUOTE_PATH, 'PlaceQuoteController.placeQuote'),
@@ -1611,7 +1580,6 @@ registerApiFamilyRoutes(analytics);
1611
1580
  registerApiFamilyRoutes(analyticsPrivate);
1612
1581
  registerApiFamilyRoutes(tableauEmbedding);
1613
1582
  registerApiFamilyRoutes(scalecenter);
1614
- registerApiFamilyRoutes(serviceAutomationServiceCatalog);
1615
1583
  registerApiFamilyRoutes(categoryNetwork);
1616
1584
  registerApiFamilyRoutes(dataCategory);
1617
1585
  registerApiFamilyRoutes(flow);
@@ -3295,4 +3263,4 @@ function auraNetworkAdapter(resourceRequest) {
3295
3263
  var main = platformNetworkAdapter(auraNetworkAdapter);
3296
3264
 
3297
3265
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
3298
- // version: 1.211.0-a37f2b789
3266
+ // version: 1.212.0-f15cbf772
@@ -30,7 +30,6 @@ export declare const EPC_BASE_URI: string;
30
30
  export declare const ERI_BASE_URI: string;
31
31
  export declare const EXPERIENCE_MODEL_BASE_URI: string;
32
32
  export declare const TABLEAU_EMBEDDING_BASE_URI: string;
33
- export declare const SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI: string;
34
33
  export declare const PEOPLE_API_BASE_URI: string;
35
34
  export declare const SALES_EXCELLENCE_BASE_URI: string;
36
35
  export declare const ENABLEMENT_BASE_URI: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.211.0",
3
+ "version": "1.212.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",