@salesforce/lds-network-aura 1.435.1 → 1.436.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.
@@ -100,6 +100,7 @@ const AI4M_EINSTEIN_BASE_URI = `${CONNECT_BASE_URI}/ai4m/einstein`;
100
100
  const DECISIONTABLE_BASE_URI = `${CONNECT_BASE_URI}/business-rules`;
101
101
  const CONTENT_TAXONOMY_BASE_URI = `${CONNECT_BASE_URI}/content-taxonomy`;
102
102
  const ENERGY_UTILITIES_PROGRAMS_BASE_URI = `${CONNECT_BASE_URI}/eu-program`;
103
+ const ENERGY_UTILITIES_PRODUCT_PRICING_DETAILS_URI = `${CONNECT_BASE_URI}/eu-sales`;
103
104
  const COMMERCE_GOALS_RECS_BUSINESS_OBJECTIVES_URI = `${CONNECT_BASE_URI}/business-objectives`;
104
105
  const COMMERCE_CATALOG_MANAGEMENT_BASE_URI = `${COMMERCE_BASE_URI}/management/webstore`;
105
106
  const COMMERCE_CATALOG_MANAGEMENT_URI = `${COMMERCE_BASE_URI}/management`;
@@ -1144,6 +1145,7 @@ const INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_EVALUATION_BY_NAME = new RegE
1144
1145
  const INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_WITH_ID_PATH = new RegExp(`${CONNECT_BASE_URI}/procedure-plan-definitions/([A-Za-z0-9]){15,18}$`, 'i');
1145
1146
  const INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_VERSION_CREATION = new RegExp(`${CONNECT_BASE_URI}/procedure-plan-definitions/([A-Za-z0-9]){15,18}/version$`, 'i');
1146
1147
  const INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_VERSION_DETAILS = new RegExp(`${CONNECT_BASE_URI}/procedure-plan-definitions/versions/([A-Za-z0-9]){15,18}$`, 'i');
1148
+ const INDUSTRIES_PRICING_PROCEDURE_PLAN_CONTEXT_DEFINITIONS_PATH = new RegExp(`${CONNECT_BASE_URI}/procedure-plans/context-definitions(\\?.*)?$`, 'i');
1147
1149
  const INDUSTRIES_PRICING_CONTEXT_RULES_EVALUATE_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/contextrules/evaluate`, 'i');
1148
1150
  const INDUSTRIES_PRICING_CONTEXT_RULES_VALIDATE_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/contextrules/validate`, 'i');
1149
1151
  const INDUSTRIES_PRICING_CONTEXT_RULES_ATTRIBUTES_PATH = new RegExp(`${CONNECT_BASE_URI}/core-pricing/contextrules/attributes`, 'i');
@@ -1394,6 +1396,7 @@ const CONTENT_TAXONOMY_TERMS_PATH = new RegExp(`${CONTENT_TAXONOMY_BASE_URI}/ter
1394
1396
  const CONTENT_TAXONOMY_TERM_PATH = new RegExp(`${CONTENT_TAXONOMY_BASE_URI}/([A-Za-z0-9]){15,18}/terms/([A-Za-z0-9]){15,18}`);
1395
1397
  const CONTENT_TAXONOMY_CREATE_TERM_PATH = new RegExp(`${CONTENT_TAXONOMY_BASE_URI}/([A-Za-z0-9]){15,18}/terms`);
1396
1398
  const ENERGY_UTILITIES_PROGRAMS_GET_PROGRAM_APPLICATIONS_PATH = new RegExp(`${ENERGY_UTILITIES_PROGRAMS_BASE_URI}/applications`);
1399
+ const ENERGY_UTILITIES_PRODUCT_PRICING_DETAILS_PATH = new RegExp(`${ENERGY_UTILITIES_PRODUCT_PRICING_DETAILS_URI}/product-pricing-details`);
1397
1400
  const KNOWLEDGE_ARTICLE_VIEW_STAT_PATH = new RegExp(`${CONNECT_BASE_URI}/knowledge/article/view-stat`, 'i');
1398
1401
  const KNOWLEDGE_ANSWER_PATH = new RegExp(`${CONNECT_BASE_URI}/article/[^/]+/answer`);
1399
1402
  const KNOWLEDGE_QUESTIONS_PATH = new RegExp(`${CONNECT_BASE_URI}/article/[^/]+/questions`, 'i');
@@ -2947,6 +2950,7 @@ const industriesPricing = [
2947
2950
  generateAdapter('post', CONNECT_BASE_URI, INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_VERSION_CREATION, 'ProcedurePlanDefinitionResourceFamilyController.createProcedurePlanVersionDetails', 'procedurePlanVersion'),
2948
2951
  generateAdapter('post', CONNECT_BASE_URI, INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_EVALUATION, 'ProcedurePlanDefinitionResourceFamilyController.procedurePlanEvaluation', 'procedurePlanEvaluationInput'),
2949
2952
  generateAdapter('post', CONNECT_BASE_URI, INDUSTRIES_PRICING_PROCEDURE_PLAN_DEFINITION_EVALUATION_BY_NAME, 'ProcedurePlanDefinitionResourceFamilyController.evaluateProcedurePlanDefinitionByName', 'procedurePlanEvaluationInput'),
2953
+ generateAdapter('get', CONNECT_BASE_URI, INDUSTRIES_PRICING_PROCEDURE_PLAN_CONTEXT_DEFINITIONS_PATH, 'ProcedurePlanDefinitionResourceFamilyController.getProcedurePlanContextDefinitions'),
2950
2954
  generateAdapter('post', CONNECT_BASE_URI, INDUSTRIES_PRICING_PROPAGATION_VALIDATE_FORMULAS, 'PropagationResourceFamilyController.validatePropagationFormulasMethod', 'formulasRequest'),
2951
2955
  generateAdapter('post', CONNECT_BASE_URI, INDUSTRIES_PRICING_CONTEXT_RULES_EVALUATE_PATH, 'IPricingContextRulesResourceFamilyController.fetchRunTimeContextRule', 'contextRulesRuntimeInput'),
2952
2956
  generateAdapter('post', CONNECT_BASE_URI, INDUSTRIES_PRICING_CONTEXT_RULES_VALIDATE_PATH, 'IPricingContextRulesResourceFamilyController.validateRule', 'contextRulesInput'),
@@ -3336,6 +3340,7 @@ const appointmentScheduling = [
3336
3340
  ];
3337
3341
  const energyUtilities = [
3338
3342
  generateAdapter('get', ENERGY_UTILITIES_PROGRAMS_BASE_URI, ENERGY_UTILITIES_PROGRAMS_GET_PROGRAM_APPLICATIONS_PATH, 'EUProgramController.getProgramApplication'),
3343
+ generateAdapter('post', ENERGY_UTILITIES_PRODUCT_PRICING_DETAILS_URI, ENERGY_UTILITIES_PRODUCT_PRICING_DETAILS_PATH, 'EUSalesController.getProductPricingDetails', 'EUProductPricingDetailsInput'),
3339
3344
  ];
3340
3345
  const knowledge = [
3341
3346
  generateAdapter('patch', CONNECT_BASE_URI, KNOWLEDGE_ARTICLE_VIEW_STAT_PATH, 'KnowledgeController.updateViewStat', 'articleViewStatInput'),
@@ -5820,4 +5825,4 @@ function auraNetworkAdapter(resourceRequest, resourceRequestContext) {
5820
5825
  var main = platformNetworkAdapter(auraNetworkAdapter);
5821
5826
 
5822
5827
  export { CrudEventState, CrudEventType, UIAPI_GET_LAYOUT, UIAPI_GET_LAYOUT_USER_STATE, UIAPI_OBJECT_INFO_BATCH_PATH, UIAPI_OBJECT_INFO_PATH, UIAPI_RECORDS_PATH$1 as UIAPI_RECORDS_PATH, UIAPI_RELATED_LIST_RECORDS_BATCH_PATH, UIAPI_RELATED_LIST_RECORDS_PATH, createOkResponse$1 as createOkResponse, main as default, defaultActionConfig, dispatchAction as dispatchAuraAction, forceRecordTransactionsDisabled, getTransactionKey, instrument$1 as instrument, layoutStorage, layoutStorageStatsLogger, layoutUserStateStorage, layoutUserStateStorageStatsLogger, instrument as ldsNetworkAdapterInstrument, objectInfoStorage, objectInfoStorageStatsLogger, registerSubRequestNetworkAdapter, shouldForceRefresh };
5823
- // version: 1.435.1-4492aa27df
5828
+ // version: 1.436.0-581b8a5964
@@ -80,6 +80,7 @@ export declare const AI4M_EINSTEIN_BASE_URI: string;
80
80
  export declare const DECISIONTABLE_BASE_URI: string;
81
81
  export declare const CONTENT_TAXONOMY_BASE_URI: string;
82
82
  export declare const ENERGY_UTILITIES_PROGRAMS_BASE_URI: string;
83
+ export declare const ENERGY_UTILITIES_PRODUCT_PRICING_DETAILS_URI: string;
83
84
  export declare const COMMERCE_GOALS_RECS_BUSINESS_OBJECTIVES_URI: string;
84
85
  export declare const COMMERCE_CATALOG_MANAGEMENT_BASE_URI: string;
85
86
  export declare const COMMERCE_CATALOG_MANAGEMENT_URI: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.435.1",
3
+ "version": "1.436.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",
@@ -37,11 +37,11 @@
37
37
  "@luvio/engine": "0.160.4"
38
38
  },
39
39
  "devDependencies": {
40
- "@salesforce/lds-adapters-uiapi": "^1.435.1",
41
- "@salesforce/lds-durable-storage": "^1.435.1",
42
- "@salesforce/lds-environment-settings": "^1.435.1",
43
- "@salesforce/lds-instrumentation": "^1.435.1",
44
- "@salesforce/lds-network-adapter": "^1.435.1"
40
+ "@salesforce/lds-adapters-uiapi": "^1.436.0",
41
+ "@salesforce/lds-durable-storage": "^1.436.0",
42
+ "@salesforce/lds-environment-settings": "^1.436.0",
43
+ "@salesforce/lds-instrumentation": "^1.436.0",
44
+ "@salesforce/lds-network-adapter": "^1.436.0"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../package.json"