@salesforce/lds-network-aura 1.107.1 → 1.108.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.
@@ -700,6 +700,7 @@ const CREATE_GROUP_PATH = new RegExp(`${GROUP_BASE_URI}/group-definitions`, 'i')
700
700
  const GET_ENGAGEMENT_CHANNEL_TYPES = new RegExp(`${SCHEDULER_BASE_URI}/engagement-channel-types`, 'i');
701
701
  const LIGHTNING_CARDS_ACTIVATION_PATH = new RegExp(`${LIGHTNING_CARDS_BASE_URI}/activationdata/([A-Z0-9]){15,18}`, 'i');
702
702
  const CREATE_SERVICE_APPOINTMENTS = new RegExp(`${SCHEDULER_BASE_URI}/service-appointments`, 'i');
703
+ const APPLY_REMINDER_PATH = new RegExp(`${CONNECT_BASE_URI}/automated-actions/reminder/apply`, 'i');
703
704
  const CPQ_PREVIEW_PATH = new RegExp(`${CPQ_BASE_URI}/preview`, 'i');
704
705
  const connect = [
705
706
  generateAdapter('get', CONNECT_BASE_URI, NOTIFICATION_SERVICE_CONFIG_PATH, 'NotificationServiceConnectFamilyController.getNotificationServiceConfig'),
@@ -1193,6 +1194,9 @@ const industriesContext = [
1193
1194
  const updateQuote = [
1194
1195
  generateAdapter('post', COMMERCE_BASE_URI, REVENUE_UPDATE_PLACE_QUOTE_PATH, 'PlaceQuoteController.placeQuote'),
1195
1196
  ];
1197
+ const automationRules = [
1198
+ generateAdapter('put', CONNECT_BASE_URI, APPLY_REMINDER_PATH, 'IAutomatedActionConnectFamilyController.applyReminder'),
1199
+ ];
1196
1200
  registerApiFamilyRoutes(updateQuote);
1197
1201
  registerApiFamilyRoutes(connect);
1198
1202
  registerApiFamilyRoutes(connectInternal);
@@ -1233,7 +1237,8 @@ registerApiFamilyRoutes(globalization);
1233
1237
  registerApiFamilyRoutes(dataloading);
1234
1238
  registerApiFamilyRoutes(salesUserWorkingHours);
1235
1239
  registerApiFamilyRoutes(scheduler);
1236
- registerApiFamilyRoutes(industriesContext);
1240
+ registerApiFamilyRoutes(industriesContext);
1241
+ registerApiFamilyRoutes(automationRules);
1237
1242
 
1238
1243
  const UI_API_BASE_URI$1 = `${BASE_URI}/ui-api`;
1239
1244
  const ACTION_CONFIG = {
@@ -2820,4 +2825,4 @@ function auraNetworkAdapter(resourceRequest) {
2820
2825
  var main = platformNetworkAdapter(auraNetworkAdapter);
2821
2826
 
2822
2827
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
2823
- // version: 1.107.1-ee21406b5
2828
+ // version: 1.108.0-ae43b5312
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.107.1",
3
+ "version": "1.108.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",
@@ -36,10 +36,10 @@
36
36
  "@luvio/engine": "0.135.4"
37
37
  },
38
38
  "devDependencies": {
39
- "@salesforce/lds-adapters-uiapi": "^1.107.1",
40
- "@salesforce/lds-aura-storage": "^1.107.1",
41
- "@salesforce/lds-environment-settings": "^1.107.1",
42
- "@salesforce/lds-instrumentation": "^1.107.1",
43
- "@salesforce/lds-network-adapter": "^1.107.1"
39
+ "@salesforce/lds-adapters-uiapi": "^1.108.0",
40
+ "@salesforce/lds-aura-storage": "^1.108.0",
41
+ "@salesforce/lds-environment-settings": "^1.108.0",
42
+ "@salesforce/lds-instrumentation": "^1.108.0",
43
+ "@salesforce/lds-network-adapter": "^1.108.0"
44
44
  }
45
45
  }