musora-content-services 2.3.9 → 2.3.11
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,10 @@
|
|
|
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.3.11](https://github.com/railroadmedia/musora-content-services/compare/v2.3.9...v2.3.11) (2025-04-09)
|
|
6
|
+
|
|
7
|
+
### [2.3.10](https://github.com/railroadmedia/musora-content-services/compare/v2.3.9...v2.3.10) (2025-04-08)
|
|
8
|
+
|
|
5
9
|
### [2.3.9](https://github.com/railroadmedia/musora-content-services/compare/v2.3.8...v2.3.9) (2025-04-08)
|
|
6
10
|
|
|
7
11
|
### [2.3.8](https://github.com/railroadmedia/musora-content-services/compare/v2.3.7...v2.3.8) (2025-04-08)
|
package/package.json
CHANGED
|
@@ -120,8 +120,8 @@ export async function recommendations(brand, { section = ''} = {}) {
|
|
|
120
120
|
try {
|
|
121
121
|
return fetchJSONHandler(
|
|
122
122
|
url,
|
|
123
|
-
globalConfig.
|
|
124
|
-
globalConfig.
|
|
123
|
+
globalConfig.sessionConfig.token,
|
|
124
|
+
globalConfig.baseUrl,
|
|
125
125
|
'get'
|
|
126
126
|
)
|
|
127
127
|
} catch (error) {
|
|
@@ -133,8 +133,8 @@ export async function recommendations(brand, { section = ''} = {}) {
|
|
|
133
133
|
async function fetchHandler(url, method = 'get', body = null) {
|
|
134
134
|
return fetchJSONHandler(
|
|
135
135
|
url,
|
|
136
|
-
globalConfig.
|
|
137
|
-
globalConfig.
|
|
136
|
+
globalConfig.sessionConfig.token,
|
|
137
|
+
globalConfig.baseUrl,
|
|
138
138
|
method,
|
|
139
139
|
null,
|
|
140
140
|
body
|
|
File without changes
|