@drax/identity-front 3.29.0 → 3.39.0

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.29.0",
6
+ "version": "3.39.0",
7
7
  "type": "module",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@drax/common-front": "^3.29.0",
23
- "@drax/crud-share": "^3.29.0",
23
+ "@drax/crud-share": "^3.39.0",
24
24
  "@drax/identity-share": "^3.23.0"
25
25
  },
26
26
  "devDependencies": {
@@ -30,5 +30,5 @@
30
30
  "vite": "^7.3.1",
31
31
  "vitest": "^3.2.4"
32
32
  },
33
- "gitHead": "4f97968e53b812a348aec9f09e59bff69e71ca9e"
33
+ "gitHead": "9490eb0473fe037d100742aa7c21e9478b941eb5"
34
34
  }
@@ -55,7 +55,7 @@ class UserRestProvider extends AbstractBaseRestProvider implements IUserProvider
55
55
 
56
56
  async changeUserPassword(userId: string, newPassword: string): Promise<boolean> {
57
57
  const url = '/api/users/password/change/' + userId
58
- const data = {userId, newPassword}
58
+ const data = {newPassword}
59
59
  let r = await this.httpClient.post(url, data)
60
60
  return /true/i.test(r as string)
61
61
  }