@salesforce/lds-network-aura 1.152.4 → 1.154.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.
@@ -757,6 +757,8 @@ const GET_SUCCESS_TEAM = new RegExp(`${EDUCATION_BASE_URI}/([A-Z0-9]{15,18})/suc
757
757
  const GET_AVAILABLE_TOPICS = new RegExp(`${EDUCATION_BASE_URI}/appointment-booking/available-topics`, 'i');
758
758
  const GET_AVAILABLE_TIME_SLOTS = new RegExp(`${EDUCATION_BASE_URI}/appointment-booking/available-time-slots`, 'i');
759
759
  const CREATE_CARE_PLANS = new RegExp(`${EDUCATION_BASE_URI}/careplan/bulk`, 'i');
760
+ const EDU_PUBLISH_LEARNING_PROGRAM_PLAN = new RegExp(`${EDUCATION_BASE_URI}/campus-setup/learning-program-plan/publish`, 'i');
761
+ const EDU_LEARNING = new RegExp(`${EDUCATION_BASE_URI}/campus-setup/learning`, 'i');
760
762
  const GET_PERSON_PUBLIC_PROFILE = new RegExp(`${EDUCATION_BASE_URI}/person-public-profile/([A-Za-z0-9]+(-[A-Za-z0-9]+)+)/([A-Z0-9]{15,18})`, 'i');
761
763
  const APPLY_REMINDER_PATH = new RegExp(`${CONNECT_BASE_URI}/automated-actions/reminder/apply`, 'i');
762
764
  const CPQ_PREVIEW_PATH = new RegExp(`${CPQ_BASE_URI}/preview`, 'i');
@@ -1279,6 +1281,8 @@ const education = [
1279
1281
  generateAdapter('get', EDUCATION_BASE_URI, GET_AVAILABLE_TOPICS, 'AppointmentBookingController.getAvailableTopics'),
1280
1282
  generateAdapter('post', EDUCATION_BASE_URI, GET_AVAILABLE_TIME_SLOTS, 'AppointmentBookingController.postAvailableTimeSlots'),
1281
1283
  generateAdapter('post', EDUCATION_BASE_URI, CREATE_CARE_PLANS, 'CarePlanBulkController.createCarePlans'),
1284
+ generateAdapter('post', EDUCATION_BASE_URI, EDU_PUBLISH_LEARNING_PROGRAM_PLAN, 'CampusSetupController.postPublishLearningProgramPlan'),
1285
+ generateAdapter('post', EDUCATION_BASE_URI, EDU_LEARNING, 'CampusSetupController.postCreateLearning'),
1282
1286
  generateAdapter('get', EDUCATION_BASE_URI, GET_PERSON_PUBLIC_PROFILE, 'PersonPublicProfileInfoController.getPersonPublicProfile'),
1283
1287
  ];
1284
1288
  const industriesContext = [
@@ -3010,4 +3014,4 @@ function auraNetworkAdapter(resourceRequest) {
3010
3014
  var main = platformNetworkAdapter(auraNetworkAdapter);
3011
3015
 
3012
3016
  export { main as default, forceRecordTransactionsDisabled, instrument$1 as instrument, instrument as ldsNetworkAdapterInstrument };
3013
- // version: 1.152.4-cef16daed
3017
+ // version: 1.154.0-3a36aab7e
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-network-aura",
3
- "version": "1.152.4",
3
+ "version": "1.154.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Network Adapter for Aura Runtime",
6
6
  "main": "dist/ldsNetwork.js",