musora-content-services 1.0.52 → 1.0.53

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.53](https://github.com/railroadmedia/musora-content-services/compare/v1.0.52...v1.0.53) (2024-08-23)
6
+
5
7
  ### [1.0.52](https://github.com/railroadmedia/musora-content-services/compare/v1.0.51...v1.0.52) (2024-08-23)
6
8
 
7
9
  ### [1.0.51](https://github.com/railroadmedia/musora-content-services/compare/v1.0.50...v1.0.51) (2024-08-23)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -636,7 +636,7 @@ export async function fetchChildren(railcontentId) {
636
636
  * @returns {Promise<Object|null>} - The fetched methods data or null if not found.
637
637
  */
638
638
  export async function fetchMethods(brand) {
639
- const query = `*[_type == 'learning-path' && brand == "drumeo"] {
639
+ const query = `*[_type == 'learning-path' && brand == ${drumeo}] {
640
640
  difficulty,
641
641
  difficulty_string,
642
642
  "description": description[0].children[0].text,
@@ -647,6 +647,7 @@ export async function fetchMethods(brand) {
647
647
  length_in_seconds,
648
648
  permission,
649
649
  popularity,
650
+ "position": count(*[_type == 'learning-path' && brand == "drumeo"]) - count(*[_type == 'learning-path' && brand == "drumeo" && published_on > ^.published_on]),
650
651
  published_on,
651
652
  railcontent_id,
652
653
  "slug": slug.current,