musora-content-services 1.0.161 → 1.0.162
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,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
|
+
### [1.0.162](https://github.com/railroadmedia/musora-content-services/compare/v1.0.161...v1.0.162) (2024-11-08)
|
|
6
|
+
|
|
5
7
|
### [1.0.161](https://github.com/railroadmedia/musora-content-services/compare/v1.0.152...v1.0.161) (2024-11-08)
|
|
6
8
|
|
|
7
9
|
### [1.0.160](https://github.com/railroadmedia/musora-content-services/compare/v1.0.159...v1.0.160) (2024-11-08)
|
package/package.json
CHANGED
|
File without changes
|
|
@@ -146,9 +146,10 @@ function getMediaTypeId(mediaType, mediaCategory) {
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
function uuidv4() {
|
|
149
|
-
return
|
|
150
|
-
|
|
151
|
-
|
|
149
|
+
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
|
150
|
+
var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
|
|
151
|
+
return v.toString(16);
|
|
152
|
+
});
|
|
152
153
|
}
|
|
153
154
|
|
|
154
155
|
function bubbleProgress(hierarchy, contentId, localContext) {
|