@salesforce/lds-network-aura 1.210.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`;
@@ -450,6 +449,7 @@ const GET_EXTENSIONS_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/extension
450
449
  const GET_MAPPINGS_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/mappings(\\?.*)?$`, 'i');
451
450
  const GET_MAPPING_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/mappings/([A-Z0-9]){15,18}$`, 'i');
452
451
  const GET_PROVIDERS_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/providers(\\?.*)?$`, 'i');
452
+ const GET_PROVIDER_PATH = new RegExp(`${COMMERCE_EXTENSION_BASE_URI}/providers/([A-Z0-9]){15,18}$`, 'i');
453
453
  const GET_GUIDANCE_ASSISTANT_PATH = new RegExp(`${GUIDANCE_BASE_URI}/([A-Z0-9_]){2,80}$`, 'i');
454
454
  const GET_LEARNING_CONTENT_PLATFORM_RELATED_LIST_PATH = new RegExp(`${LEARNING_CONTENT_PLATFORM_BASE_URI}/featured-item/list/related$`, 'i');
455
455
  const GET_LEARNING_CONTENT_PLATFORM_RECOMMENDED_LIST_PATH = new RegExp(`${LEARNING_CONTENT_PLATFORM_BASE_URI}/featured-item/list/recommended$`, 'i');
@@ -574,10 +574,6 @@ const CREATE_OBJECT_ALIAS_PATH = new RegExp(`${CONNECT_BASE_URI}/ruleengine/obje
574
574
  const ALIAS_FIELD_PATH = new RegExp(`${CONNECT_BASE_URI}/ruleengine/object-alias/([A-Z0-9]){1,18}`, 'i');
575
575
  const PROCESS_TYPE_PATH = new RegExp(`${CONNECT_BASE_URI}/ruleengine/processType/[A-Z0-9]`, 'i');
576
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');
577
- const SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_PATH = new RegExp(`${SERVICE_AUTOMATION_SERVIRCE_CATALOG_BASE_URI}/communication/([A-Z0-9]){15,18}$`, 'i');
578
- 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');
579
- 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');
580
- 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');
581
577
  const SCALE_CENTER_GET_METRICS_PATH = new RegExp(`${SCALECENTER_BASE_URI}/metrics/query`, 'i');
582
578
  const GET_DECISION_MATRIC_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/omnistudio/decision-matrices/([A-Z0-9]){1,18}$`, 'i');
583
579
  const GET_DECISION_TABLE_DETAILS_PATH = new RegExp(`${CONNECT_BASE_URI}/omnistudio/decision-tables/([A-Z0-9]){15,18}$`, 'i');
@@ -804,6 +800,8 @@ const GET_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_U
804
800
  const CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/recipe/mapping`, 'i');
805
801
  const GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH = new RegExp(`${CONNECT_BASE_URI}/industries/pricing/sync/([A-Za-z0-9_]){5,255}`, 'i');
806
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');
807
805
  function generateAdapter(method, baseUri, pathRegex, controller, bodyParamName) {
808
806
  return {
809
807
  method,
@@ -1004,14 +1002,14 @@ const connect = [
1004
1002
  generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_CHECKIN_URI_PATH, 'ClmController.checkIn'),
1005
1003
  generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_UNLOCK_URI_PATH, 'ClmController.unlock'),
1006
1004
  generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_LOCK_URI_PATH, 'ClmController.lockContractDocumentVersion'),
1007
- 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'),
1008
1006
  generateAdapter('post', CLM_BASE_URI, CLM_CONTRACT_CHECKOUT_URI_PATH, 'ClmController.checkoutContractDocumentVersion'),
1009
1007
  generateAdapter('delete', CLM_BASE_URI, CLM_CONTENT_DOCUMENTS, 'ClmController.deleteAttachment'),
1010
1008
  generateAdapter('get', CLM_BASE_URI, CLM_CONTENT_DOCUMENTS, 'ClmController.getContentDocument'),
1011
1009
  generateAdapter('delete', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.deleteContractDocumentVersionReview'),
1012
1010
  generateAdapter('get', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.getContractDocumentVersionReview'),
1013
- generateAdapter('patch', CLM_BASE_URI, CLM_CONTRACT_REVIEW_PATH, 'ClmController.patchContractDocumentVersionReview'),
1014
- 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'),
1015
1013
  generateAdapter('get', CLM_BASE_URI, CLM_GET_DOCUMENT_GENERATION_PROCESS_PATH, 'ClmController.getDocumentGenerationProcessDetails'),
1016
1014
  generateAdapter('patch', CLM_BASE_URI, CLM_UPDATE_DOCUMENT_URI_PATH, 'ClmController.updateContractDocumentVersionWithTemplate'),
1017
1015
  generateAdapter('get', CLM_BASE_URI, CLM_GET_CONTRACT_ACTIONS_PATH, 'ClmController.getContractActions'),
@@ -1058,6 +1056,7 @@ const commerce_extension = [
1058
1056
  generateAdapter('put', COMMERCE_EXTENSION_BASE_URI, GET_MAPPING_PATH, 'CommerceExtensionFamilyController.remapExtension', 'mappingInputRepresentation'),
1059
1057
  generateAdapter('delete', COMMERCE_EXTENSION_BASE_URI, GET_MAPPING_PATH, 'CommerceExtensionFamilyController.unmapExtension'),
1060
1058
  generateAdapter('get', COMMERCE_EXTENSION_BASE_URI, GET_PROVIDERS_PATH, 'CommerceExtensionFamilyController.getProviders'),
1059
+ generateAdapter('get', COMMERCE_EXTENSION_BASE_URI, GET_PROVIDER_PATH, 'CommerceExtensionFamilyController.getProvider'),
1061
1060
  ];
1062
1061
  const scalecenter = [
1063
1062
  {
@@ -1068,36 +1067,6 @@ const scalecenter = [
1068
1067
  },
1069
1068
  },
1070
1069
  ];
1071
- const serviceAutomationServiceCatalog = [
1072
- {
1073
- method: 'get',
1074
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_PATH.test(path),
1075
- transport: {
1076
- controller: 'ServiceAutomationServiceCatalogController.getCommunication',
1077
- },
1078
- },
1079
- {
1080
- method: 'get',
1081
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_GET_COMMUNICATION_CHANNEL_PATH.test(path),
1082
- transport: {
1083
- controller: 'ServiceAutomationServiceCatalogController.getCommunicationChannel',
1084
- },
1085
- },
1086
- {
1087
- method: 'post',
1088
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_MARK_CHANNEL_AS_READ_PATH.test(path),
1089
- transport: {
1090
- controller: 'ServiceAutomationServiceCatalogController.markCommunicationChannelAsRead',
1091
- },
1092
- },
1093
- {
1094
- method: 'post',
1095
- predicate: (path) => SERVICE_AUTOMATION_SERVIRCE_CATALOG_CHANNEL_THREAD_CREATE_MESSAGE_AS_READ_PATH.test(path),
1096
- transport: {
1097
- controller: 'ServiceAutomationServiceCatalogController.createMessage',
1098
- },
1099
- },
1100
- ];
1101
1070
  const categoryNetwork = [
1102
1071
  {
1103
1072
  method: 'get',
@@ -1552,6 +1521,8 @@ const industriesPricing = [
1552
1521
  generateAdapter('post', CONNECT_BASE_URI, CREATE_INDUSTRIES_PRICING_RECIPES_MAPPING_PATH, 'PricingResourceFamilyController.createPricingRecipeMapping'),
1553
1522
  generateAdapter('get', CONNECT_BASE_URI, GET_INDUSTRIES_PRICING_SYNC_PARAM_PATH, 'PricingResourceFamilyController.syncPricingData'),
1554
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'),
1555
1526
  ];
1556
1527
  const updateQuote = [
1557
1528
  generateAdapter('post', COMMERCE_BASE_URI, REVENUE_UPDATE_PLACE_QUOTE_PATH, 'PlaceQuoteController.placeQuote'),
@@ -1609,7 +1580,6 @@ registerApiFamilyRoutes(analytics);
1609
1580
  registerApiFamilyRoutes(analyticsPrivate);
1610
1581
  registerApiFamilyRoutes(tableauEmbedding);
1611
1582
  registerApiFamilyRoutes(scalecenter);
1612
- registerApiFamilyRoutes(serviceAutomationServiceCatalog);
1613
1583
  registerApiFamilyRoutes(categoryNetwork);
1614
1584
  registerApiFamilyRoutes(dataCategory);
1615
1585
  registerApiFamilyRoutes(flow);
@@ -3293,4 +3263,4 @@ function auraNetworkAdapter(resourceRequest) {
3293
3263
  var main = platformNetworkAdapter(auraNetworkAdapter);
3294
3264
 
3295
3265
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
3296
- // version: 1.210.0-b2655462f
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.210.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",