musora-content-services 2.104.8 → 2.104.9

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.
@@ -1,17 +1,9 @@
1
1
  {
2
2
  "permissions": {
3
3
  "allow": [
4
- "Bash(git show:*)",
5
- "Bash(npm test:*)",
6
- "Bash(done)",
7
- "Bash(for line in 82 108 161 187 215 247 273 299 332 350 372)",
8
- "Bash(do echo \"Line $line:\")",
9
- "Bash(git add:*)",
10
- "Bash(git commit:*)",
11
- "Bash(git checkout:*)",
12
- "Bash(git diff:*)"
4
+ "Bash(rg:*)",
5
+ "Bash(npm run lint:*)"
13
6
  ],
14
- "deny": [],
15
- "ask": []
7
+ "deny": []
16
8
  }
17
9
  }
File without changes
File without changes
package/.prettierignore CHANGED
File without changes
package/.prettierrc CHANGED
File without changes
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
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.104.9](https://github.com/railroadmedia/musora-content-services/compare/v2.104.8...v2.104.9) (2025-12-17)
6
+
5
7
  ### [2.104.8](https://github.com/railroadmedia/musora-content-services/compare/v2.104.7...v2.104.8) (2025-12-16)
6
8
 
7
9
  ### [2.104.7](https://github.com/railroadmedia/musora-content-services/compare/v2.104.6...v2.104.7) (2025-12-16)
package/jest.config.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.104.8",
3
+ "version": "2.104.9",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -124,6 +124,7 @@ export async function getEnrichedLearningPath(learningPathId) {
124
124
  addProgressStatus: true,
125
125
  addProgressPercentage: true,
126
126
  addProgressTimestamp: true,
127
+ addResumeTimeSeconds: true,
127
128
  addNavigateTo: true,
128
129
  }
129
130
  )) as any
@@ -154,6 +155,7 @@ export async function getEnrichedLearningPaths(learningPathIds: number[]) {
154
155
  addProgressStatus: true,
155
156
  addProgressPercentage: true,
156
157
  addProgressTimestamp: true,
158
+ addResumeTimeSeconds: true,
157
159
  addNavigateTo: true,
158
160
  }
159
161
  )) as any
File without changes
File without changes
package/test/log.js CHANGED
File without changes