musora-content-services 2.169.1 → 2.169.2

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.169.2](https://github.com/railroadmedia/musora-content-services/compare/v2.169.1...v2.169.2) (2026-08-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * function return type ([9762230](https://github.com/railroadmedia/musora-content-services/commit/97622301bccb6dbbf79a546427fd5fac0fef62bd))
11
+
5
12
  ### [2.169.1](https://github.com/railroadmedia/musora-content-services/compare/v2.169.0...v2.169.1) (2026-08-07)
6
13
 
7
14
  ## [2.169.0](https://github.com/railroadmedia/musora-content-services/compare/v2.168.0...v2.169.0) (2026-08-04)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.169.1",
3
+ "version": "2.169.2",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -20,9 +20,9 @@ export interface AccountStatus {
20
20
  *
21
21
  * @throws {HttpError} - Throws HttpError if the request fails.
22
22
  */
23
- export async function status(email: string): Promise<OAuthProvider> {
23
+ export async function status(email: string): Promise<AccountStatus> {
24
24
  const httpClient = new HttpClient(globalConfig.baseUrl)
25
- return await httpClient.post<OAuthProvider>(
25
+ return await httpClient.post<AccountStatus>(
26
26
  `/api/user-management-system/v1/accounts/${encodeURIComponent(email)}/status`,
27
27
  []
28
28
  )
@@ -1 +1 @@
1
- export const MCS_VERSION = '2.169.1'
1
+ export const MCS_VERSION = '2.169.2'