musora-content-services 1.0.67 → 1.0.68
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 +2 -0
- package/package.json +1 -1
- package/src/services/sanity.js +3 -3
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.68](https://github.com/railroadmedia/musora-content-services/compare/v1.0.67...v1.0.68) (2024-08-27)
|
|
6
|
+
|
|
5
7
|
### [1.0.67](https://github.com/railroadmedia/musora-content-services/compare/v1.0.66...v1.0.67) (2024-08-27)
|
|
6
8
|
|
|
7
9
|
### [1.0.66](https://github.com/railroadmedia/musora-content-services/compare/v1.0.65...v1.0.66) (2024-08-26)
|
package/package.json
CHANGED
package/src/services/sanity.js
CHANGED
|
@@ -236,12 +236,12 @@ export async function fetchWorkouts(brand) {
|
|
|
236
236
|
"id": railcontent_id,
|
|
237
237
|
title,
|
|
238
238
|
"image": thumbnail.asset->url,
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
"artist_name": instructor[0]->name,
|
|
240
|
+
"artists": instructor[]->name,
|
|
241
241
|
difficulty,
|
|
242
242
|
difficulty_string,
|
|
243
243
|
length_in_seconds,
|
|
244
|
-
published_on
|
|
244
|
+
published_on,
|
|
245
245
|
"type": _type,
|
|
246
246
|
web_url_path,
|
|
247
247
|
} | order(published_on desc)[0...5]`
|