musora-content-services 2.101.0 → 2.101.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.101.1](https://github.com/railroadmedia/musora-content-services/compare/v2.101.0...v2.101.1) (2025-12-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * user id missing on auth key ([ba4068f](https://github.com/railroadmedia/musora-content-services/commit/ba4068ff3aa8005b1b3ed615b07d4ff7eb9f751b))
11
+
5
12
  ## [2.101.0](https://github.com/railroadmedia/musora-content-services/compare/v2.100.3...v2.101.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.101.0",
3
+ "version": "2.101.1",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -96,7 +96,7 @@ export async function logout() {
96
96
  })
97
97
  }
98
98
 
99
- export async function loginWithAuthKey(authKey, deviceName, deviceToken, platform) {
99
+ export async function loginWithAuthKey(userId, authKey, deviceName, deviceToken, platform) {
100
100
  const baseUrl = `${globalConfig.baseUrl}/api/user-management-system`
101
101
  return fetch(`${baseUrl}/v1/sessions/auth-key`, {
102
102
  method: 'POST',
@@ -105,6 +105,7 @@ export async function loginWithAuthKey(authKey, deviceName, deviceToken, platfor
105
105
  Authorization: null,
106
106
  },
107
107
  body: JSON.stringify({
108
+ user_id: userId,
108
109
  auth_key: authKey,
109
110
  device_name: deviceName,
110
111
  device_token: deviceToken,