musora-content-services 2.119.2 → 2.119.3

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.
@@ -0,0 +1,9 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(rg:*)",
5
+ "Bash(npm run lint:*)"
6
+ ],
7
+ "deny": []
8
+ }
9
+ }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
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
+ ### [2.119.3](https://github.com/railroadmedia/musora-content-services/compare/v2.119.2...v2.119.3) (2026-01-14)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * remove unsupported collection types ([#713](https://github.com/railroadmedia/musora-content-services/issues/713)) ([0441941](https://github.com/railroadmedia/musora-content-services/commit/04419413ffea82303258b839c8e1e11b3a4c507a))
11
+
5
12
  ### [2.119.2](https://github.com/railroadmedia/musora-content-services/compare/v2.119.1...v2.119.2) (2026-01-14)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.119.2",
3
+ "version": "2.119.3",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -53,7 +53,7 @@ export class Tabs {
53
53
  static Collections = { name: 'Collections', short_name: 'Collections', value: 'type,collections', cardType: 'big' }
54
54
  static ExploreAll = { name: 'Explore All', short_name: 'Explore All', value: 'tab,explore all', icon: 'icon-filters', cardType: 'big'}
55
55
  static All = { name: 'All', short_name: 'All', value: '' }
56
- static Courses = { name: 'Courses', short_name: 'Courses', value: 'type,Courses', recSysSection: 'lesson', }
56
+ static Courses = { name: 'Courses', short_name: 'Courses', value: 'tab,courses', recSysSection: 'lesson', }
57
57
  static SkillLevel = { name: 'Skill Level', short_name: 'SKILL LEVEL', is_group_by: true, value: 'difficulty_string' }
58
58
  static Genres = { name: 'Genres', short_name: 'Genres', is_group_by: true, value: 'genre' }
59
59
  static Completed = {
@@ -229,7 +229,7 @@ export const lessonTypesMapping = {
229
229
  performances: performancesLessonTypes,
230
230
  'student archives': studentArchivesLessonTypes,
231
231
  documentaries: ['documentary-lesson'],
232
- courses: ['course', 'course-collection'],
232
+ courses: ['course'],
233
233
  'guided courses': ['guided-course'],
234
234
  'course collections': ['course-collection'],
235
235
  'skill packs': ['skill-pack'],
@@ -10,9 +10,7 @@ import {
10
10
 
11
11
  export enum COLLECTION_TYPE {
12
12
  SELF = 'self',
13
- GUIDED_COURSE = 'guided-course',
14
13
  LEARNING_PATH = 'learning-path-v2',
15
- PLAYLIST = 'playlist',
16
14
  }
17
15
  export const COLLECTION_ID_SELF = 0
18
16