musora-content-services 1.0.192 → 1.0.193

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.193](https://github.com/railroadmedia/musora-content-services/compare/v1.0.192...v1.0.193) (2024-11-28)
6
+
5
7
  ### [1.0.192](https://github.com/railroadmedia/musora-content-services/compare/v1.0.191...v1.0.192) (2024-11-28)
6
8
 
7
9
  ### [1.0.191](https://github.com/railroadmedia/musora-content-services/compare/v1.0.190...v1.0.191) (2024-11-28)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "1.0.192",
3
+ "version": "1.0.193",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -632,7 +632,7 @@ async function handleCustomFetchAll(brand, type, {
632
632
  } = {}) {
633
633
  if (type === 'challenge') {
634
634
  if (groupBy === 'completed') {
635
- const completedIds = fetchCompletedChallenges(brand, page, limit);
635
+ const completedIds = await fetchCompletedChallenges(brand, page, limit);
636
636
  return fetchAll(brand, type,
637
637
  {
638
638
  page,
@@ -647,7 +647,7 @@ async function handleCustomFetchAll(brand, type, {
647
647
  progress
648
648
  });
649
649
  } else if (groupBy === 'owned') {
650
- const ownedIds = fetchOwnedChallenges(brand, page, limit);
650
+ const ownedIds = await fetchOwnedChallenges(brand, page, limit);
651
651
  return fetchAll(brand, type,
652
652
  {
653
653
  page,