musora-content-services 2.72.1 → 2.73.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [2.73.0](https://github.com/railroadmedia/musora-content-services/compare/v2.72.1...v2.73.0) (2025-11-06)
6
+
7
+
8
+ ### Features
9
+
10
+ * returning data updates in fetchLearningPathLessons ([#550](https://github.com/railroadmedia/musora-content-services/issues/550)) ([1753d75](https://github.com/railroadmedia/musora-content-services/commit/1753d754d620fafc387e700f114d67ec7fc9043f))
11
+
5
12
  ### [2.72.1](https://github.com/railroadmedia/musora-content-services/compare/v2.72.0...v2.72.1) (2025-11-06)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.72.1",
3
+ "version": "2.73.0",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -127,11 +127,9 @@ export async function fetchLearningPathLessons(
127
127
  }
128
128
 
129
129
  return {
130
- id: learningPathId,
131
- thumbnail: learningPath.thumbnail,
132
- title: learningPath.title || '',
130
+ ...learningPath,
133
131
  is_active_learning_path: isActiveLearningPath,
134
- all_lessons: lessons,
132
+ children: lessons,
135
133
  upcoming_lessons: upcomingLessons,
136
134
  todays_lessons: todaysLessons,
137
135
  next_learning_path_lessons: nextLPLessons,