musora-content-services 2.157.2 → 2.157.4

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.
@@ -1,10 +1,18 @@
1
1
  {
2
- "permissions": {
3
- "allow": [
4
- "Bash(rg:*)",
5
- "Bash(npm run lint:*)",
6
- "Bash(ls:*)"
7
- ],
8
- "deny": []
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
+ "langfuse",
14
+ "chrome-devtools",
15
+ "railway",
16
+ "github"
17
+ ]
10
18
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
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.4](https://github.com/railroadmedia/musora-content-services/compare/v2.157.3...v2.157.4) (2026-05-05)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * update sanity url to v4 ([91daeb7](https://github.com/railroadmedia/musora-content-services/commit/91daeb7e50801832a4d824f6f20695d29879fd36))
11
+
12
+ ### [2.157.3](https://github.com/railroadmedia/musora-content-services/compare/v2.157.2...v2.157.3) (2026-05-05)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * increment sanity url version ([de73b89](https://github.com/railroadmedia/musora-content-services/commit/de73b89bbc53175ba5901c2588fdb2f47ff35069))
18
+
5
19
  ### [2.157.2](https://github.com/railroadmedia/musora-content-services/compare/v2.157.0...v2.157.2) (2026-04-30)
6
20
 
7
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.157.2",
3
+ "version": "2.157.4",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -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}/v2?perspective=${perspective}`
1591
+ const baseUrl = `https://sanity.musora.com/${globalConfig.sanityConfig.projectId}/${api}/v${globalConfig.sanityConfig.version}/${globalConfig.sanityConfig.dataset}/v4?perspective=${perspective}`
1592
1592
 
1593
1593
  try {
1594
1594
  const encodedQuery = encodeURIComponent(query)