@open-xchange/soap-client 0.1.2 → 0.1.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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.1.3] - 2026-04-28
8
+
9
+ ### Fixed
10
+
11
+ - Use default admin credentials for `convertUserToSharedAccount` SOAP call
12
+
7
13
  ## [0.1.2] - 2026-04-21
8
14
 
9
15
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/soap-client",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "SOAP client for OX App Suite",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -56,7 +56,7 @@ export async function convertUserToSharedAccount (context, userId, password) {
56
56
  ctx: { id: context.id },
57
57
  user: { id: userId },
58
58
  password,
59
- auth: context.auth
59
+ auth: context.admin
60
60
  })
61
61
  }
62
62