musora-content-services 1.0.131 → 1.0.132

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.132](https://github.com/railroadmedia/musora-content-services/compare/v1.0.131...v1.0.132) (2024-10-10)
6
+
5
7
  ### [1.0.131](https://github.com/railroadmedia/musora-content-services/compare/v1.0.130...v1.0.131) (2024-10-10)
6
8
 
7
9
  ### [1.0.130](https://github.com/railroadmedia/musora-content-services/compare/v1.0.129...v1.0.130) (2024-10-09)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "1.0.131",
3
+ "version": "1.0.132",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -518,7 +518,7 @@ export async function fetchAll(brand, type, {
518
518
  const webUrlPath = 'artists';
519
519
  const lessonsFilter = `_type == '${type}' && brand == '${brand}' && ^._id == ${groupBy}._ref ${searchFilter} ${includedFieldsFilter} ${progressFilter}`;
520
520
  entityFieldsString = `
521
- 'id': _id,
521
+ 'id': railcontent_id,
522
522
  'type': _type,
523
523
  name,
524
524
  'head_shot_picture_url': thumbnail_url.asset->url,
@@ -534,7 +534,7 @@ export async function fetchAll(brand, type, {
534
534
  const webUrlPath = (groupBy == 'genre')?'/genres':'';
535
535
  const lessonsFilter = `brand == '${brand}' && ^._id in ${groupBy}[]._ref ${typeFilter} ${searchFilter} ${includedFieldsFilter} ${progressFilter}`;
536
536
  entityFieldsString = `
537
- 'id': _id,
537
+ 'id': railcontent_id,
538
538
  'type': _type,
539
539
  name,
540
540
  'head_shot_picture_url': thumbnail_url.asset->url,
File without changes