washday-sdk 0.0.181 → 0.0.182

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "washday-sdk",
3
- "version": "0.0.181",
3
+ "version": "0.0.182",
4
4
  "description": "Washday utilities functions and API",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -14,6 +14,9 @@ interface userDTO {
14
14
  }
15
15
  freshChatRestoreID?: string
16
16
  pushNotificationToken?: string
17
+ email?: string
18
+ name?: string
19
+ phoneNumber?: string
17
20
  }
18
21
 
19
22
  export const updateUserById = async function (this: WashdayClientInstance, userId: string, data: userDTO): Promise<any> {