musora-content-services 2.157.2 → 2.157.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.
- package/.claude/settings.local.json +12 -8
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/services/sanity.js +1 -1
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
2
|
+
"enabledMcpjsonServers": [
|
|
3
|
+
"nightwatch",
|
|
4
|
+
"atlassian",
|
|
5
|
+
"figma",
|
|
6
|
+
"google-workspace",
|
|
7
|
+
"snowflake",
|
|
8
|
+
"aws",
|
|
9
|
+
"hex",
|
|
10
|
+
"sanity",
|
|
11
|
+
"mysql",
|
|
12
|
+
"slack"
|
|
13
|
+
]
|
|
10
14
|
}
|
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.157.3](https://github.com/railroadmedia/musora-content-services/compare/v2.157.2...v2.157.3) (2026-05-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* increment sanity url version ([de73b89](https://github.com/railroadmedia/musora-content-services/commit/de73b89bbc53175ba5901c2588fdb2f47ff35069))
|
|
11
|
+
|
|
5
12
|
### [2.157.2](https://github.com/railroadmedia/musora-content-services/compare/v2.157.0...v2.157.2) (2026-04-30)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
package/src/services/sanity.js
CHANGED
|
@@ -1588,7 +1588,7 @@ export async function fetchSanity(
|
|
|
1588
1588
|
}
|
|
1589
1589
|
const perspective = globalConfig.sanityConfig.perspective ?? 'published'
|
|
1590
1590
|
const api = globalConfig.sanityConfig.useCachedAPI ? 'apicdn' : 'api'
|
|
1591
|
-
const baseUrl = `https://sanity.musora.com/${globalConfig.sanityConfig.projectId}/${api}/v${globalConfig.sanityConfig.version}/${globalConfig.sanityConfig.dataset}/
|
|
1591
|
+
const baseUrl = `https://sanity.musora.com/${globalConfig.sanityConfig.projectId}/${api}/v${globalConfig.sanityConfig.version}/${globalConfig.sanityConfig.dataset}/v3?perspective=${perspective}`
|
|
1592
1592
|
|
|
1593
1593
|
try {
|
|
1594
1594
|
const encodedQuery = encodeURIComponent(query)
|