musora-content-services 1.0.203 → 1.0.205

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
+ ### [1.0.205](https://github.com/railroadmedia/musora-content-services/compare/v1.0.204...v1.0.205) (2024-12-01)
6
+
7
+ ### [1.0.204](https://github.com/railroadmedia/musora-content-services/compare/v1.0.203...v1.0.204) (2024-12-01)
8
+
5
9
  ### [1.0.203](https://github.com/railroadmedia/musora-content-services/compare/v1.0.202...v1.0.203) (2024-12-01)
6
10
 
7
11
  ### [1.0.202](https://github.com/railroadmedia/musora-content-services/compare/v1.0.201...v1.0.202) (2024-11-30)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "1.0.203",
3
+ "version": "1.0.205",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -728,6 +728,7 @@ const contentMetadata = {
728
728
  ],
729
729
  },
730
730
  'pack': {
731
+ name: 'Packs',
731
732
  allowableFilters: ['difficulty', 'genre', 'essential', 'theory', 'lifestyle'],
732
733
  },
733
734
  'odd-times': {
@@ -113,9 +113,9 @@ export class FilterBuilder {
113
113
  } else if (!this.pullFutureContent) {
114
114
  this._andWhere(`published_on <= '${now}'`);
115
115
  } else {
116
- const date = new Date();
117
- const theFuture = new Date(date.setMonth(date.getMonth() + 18));
118
- this._andWhere(`published_on <= '${theFuture}'`);
116
+ // const date = new Date();
117
+ // const theFuture = new Date(date.setMonth(date.getMonth() + 18));
118
+ // this._andWhere(`published_on <= '${theFuture}'`);
119
119
  }
120
120
  return this;
121
121
  }