musora-content-services 1.0.232 → 1.0.233

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.233](https://github.com/railroadmedia/musora-content-services/compare/v1.0.218...v1.0.233) (2024-12-12)
6
+
5
7
  ### [1.0.232](https://github.com/railroadmedia/musora-content-services/compare/v1.0.231...v1.0.232) (2024-12-11)
6
8
 
7
9
  ### [1.0.231](https://github.com/railroadmedia/musora-content-services/compare/v1.0.230...v1.0.231) (2024-12-10)
File without changes
package/docs/index.html CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
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": "1.0.232",
3
+ "version": "1.0.233",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
File without changes
@@ -476,7 +476,7 @@ function filtersToGroq(filters, selectedFilters = []) {
476
476
  return `bpm == ${value}`;
477
477
  }
478
478
  } else if (['creativity', 'essential', 'focus', 'genre', 'lifestyle', 'theory', 'topic'].includes(key) && !selectedFilters.includes(key)) {
479
- return `${key}[]->name match "${value}"`;
479
+ return `"${value}" in ${key}[]->name`;
480
480
  } else if (key === 'gear' && !selectedFilters.includes('gear')) {
481
481
  return `gear match "${value}"`;
482
482
  } else if (key === 'instrumentless' && !selectedFilters.includes(key)) {
File without changes
package/src/index.d.ts CHANGED
File without changes
package/src/index.js CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -509,7 +509,7 @@ describe('Sanity Queries', function () {
509
509
  });
510
510
 
511
511
  test('fetchAll-IncludedFields-coaches-multiple-focus', async () => {
512
- let response = await fetchAll('drumeo', 'instructor', {includedFields: ['focus,drumline', 'focus,recording']});
512
+ let response = await fetchAll('drumeo', 'instructor', {includedFields: ['focus,Drumline', 'focus,Recording']});
513
513
  log(response);
514
514
  expect(response.entity.length).toBeGreaterThan(0);
515
515
  });