@dative-gpi/foundation-shared-services 0.0.94 → 0.0.95

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.
@@ -13,7 +13,7 @@ const UserServiceFactory = new ServiceFactory<UserDetailsDTO, UserDetails>("user
13
13
  notifyService.notify("update", result);
14
14
  return result;
15
15
  }),
16
- ...ServiceFactory.addCustom("updateCurrentEmail", (axios, payload: UpdateCurrentUserEmailDTO) => axios.post(USER_CURRENT_URL(), payload), (dto: UserDetailsDTO) => {
16
+ ...ServiceFactory.addCustom("updateCurrentEmail", (axios, payload: UpdateCurrentUserEmailDTO) => axios.put(USER_CURRENT_URL(), payload), (dto: UserDetailsDTO) => {
17
17
  const result = new UserDetails(dto);
18
18
  notifyService.notify("update", result);
19
19
  return result;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-services",
3
3
  "sideEffects": false,
4
- "version": "0.0.94",
4
+ "version": "0.0.95",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -11,10 +11,10 @@
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
13
  "@dative-gpi/bones-ui": "^0.0.73",
14
- "@dative-gpi/foundation-shared-domain": "0.0.94",
14
+ "@dative-gpi/foundation-shared-domain": "0.0.95",
15
15
  "@microsoft/signalr": "^8.0.0",
16
16
  "vue": "^3.4.23",
17
17
  "vue-router": "^4.2.5"
18
18
  },
19
- "gitHead": "32dca3eabc60908f1b2b7af0a77865153adfb199"
19
+ "gitHead": "430241065052c69e57dd56ba7f22d56a773bf4b2"
20
20
  }