musora-content-services 2.155.11 → 2.155.14
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,14 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"sanity",
|
|
11
|
-
"mysql",
|
|
12
|
-
"slack"
|
|
13
|
-
]
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(rg:*)",
|
|
5
|
+
"Bash(npm run lint:*)",
|
|
6
|
+
"Bash(ls:*)"
|
|
7
|
+
],
|
|
8
|
+
"deny": []
|
|
9
|
+
}
|
|
14
10
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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.155.14](https://github.com/railroadmedia/musora-content-services/compare/v2.155.11...v2.155.14) (2026-04-29)
|
|
6
|
+
|
|
7
|
+
### [2.155.13](https://github.com/railroadmedia/musora-content-services/compare/v2.155.11...v2.155.13) (2026-04-29)
|
|
8
|
+
|
|
9
|
+
### [2.155.12](https://github.com/railroadmedia/musora-content-services/compare/v2.155.11...v2.155.12) (2026-04-29)
|
|
10
|
+
|
|
5
11
|
### [2.155.11](https://github.com/railroadmedia/musora-content-services/compare/v2.155.10...v2.155.11) (2026-04-28)
|
|
6
12
|
|
|
7
13
|
|
package/package.json
CHANGED
|
@@ -604,7 +604,7 @@ async function saveContentProgress(
|
|
|
604
604
|
// (only to siblings/parents via le bubbles)
|
|
605
605
|
|
|
606
606
|
// skip bubbling if progress hasnt changed, or if offline
|
|
607
|
-
if (progress === currentProgress ||
|
|
607
|
+
if (progress === currentProgress || isOffline) {
|
|
608
608
|
if (!skipPush) db.contentProgress.requestPushUnsynced('save-content-progress')
|
|
609
609
|
return response
|
|
610
610
|
}
|