musora-content-services 2.102.0 → 2.102.1

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,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.102.1](https://github.com/railroadmedia/musora-content-services/compare/v2.102.0...v2.102.1) (2025-12-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **agi:** offset default and slug clause on artistBySlug ([10cc6d0](https://github.com/railroadmedia/musora-content-services/commit/10cc6d0390a12715aeba01c5dc72ecdb53d0f236))
11
+
5
12
  ## [2.102.0](https://github.com/railroadmedia/musora-content-services/compare/v2.101.1...v2.102.0) (2025-12-10)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.102.0",
3
+ "version": "2.102.1",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -89,7 +89,7 @@ export async function fetchArtistBySlug(
89
89
 
90
90
  const q = query()
91
91
  .and(`_type == "artist"`)
92
- .and(`&& slug.current == '${slug}'`)
92
+ .and(`slug.current == '${slug}'`)
93
93
  .select(
94
94
  'name',
95
95
  `"slug": slug.current`,
@@ -139,7 +139,7 @@ export async function fetchArtistLessons(
139
139
  {
140
140
  sort = '-published_on',
141
141
  searchTerm = '',
142
- offset = 1,
142
+ offset = 0,
143
143
  limit = 10,
144
144
  includedFields = [],
145
145
  progressIds = [],
@@ -138,7 +138,7 @@ export async function fetchGenreLessons(
138
138
  {
139
139
  sort = '-published_on',
140
140
  searchTerm = '',
141
- offset = 1,
141
+ offset = 0,
142
142
  limit = 10,
143
143
  includedFields = [],
144
144
  progressIds = [],
@@ -138,7 +138,7 @@ export async function fetchInstructorLessons(
138
138
  {
139
139
  sort = '-published_on',
140
140
  searchTerm = '',
141
- offset = 1,
141
+ offset = 0,
142
142
  limit = 20,
143
143
  includedFields = [],
144
144
  }: InstructorLessonsOptions = {}