musora-content-services 2.3.13 → 2.3.15

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,10 @@
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.3.15](https://github.com/railroadmedia/musora-content-services/compare/v2.3.14...v2.3.15) (2025-04-11)
6
+
7
+ ### [2.3.14](https://github.com/railroadmedia/musora-content-services/compare/v2.3.13...v2.3.14) (2025-04-11)
8
+
5
9
  ### [2.3.13](https://github.com/railroadmedia/musora-content-services/compare/v2.3.12...v2.3.13) (2025-04-10)
6
10
 
7
11
  ### [2.3.12](https://github.com/railroadmedia/musora-content-services/compare/v2.3.11...v2.3.12) (2025-04-10)
package/link_mcs.sh CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.3.13",
3
+ "version": "2.3.15",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
File without changes
@@ -28,7 +28,7 @@ export async function fetchSimilarItems(content_id, brand, count = 10) {
28
28
  if (!content_id) {
29
29
  return []
30
30
  }
31
-
31
+ content_id = parseInt(content_id)
32
32
  let data = {
33
33
  brand: brand,
34
34
  content_ids: content_id,