taxtank-core 0.33.29 → 0.33.30
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/esm2022/src/lib/services/http/user/user-messages.enum.mjs +2 -1
- package/esm2022/src/lib/services/http/user/user.service.mjs +8 -1
- package/fesm2022/taxtank-core.mjs +8 -0
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/services/http/user/user-messages.enum.d.ts +2 -1
- package/src/lib/services/http/user/user.service.d.ts +1 -0
package/package.json
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
export declare enum UserMessagesEnum {
|
2
2
|
PHOTO_UPDATED = "Profile photo updated",
|
3
3
|
USER_DATA_UPDATED = "Data was successfully updated!",
|
4
|
-
CLIENT_DETAILS_UPDATED = "Client details updated"
|
4
|
+
CLIENT_DETAILS_UPDATED = "Client details updated",
|
5
|
+
DELETE = "Closing your account will mean you won't be able to access this account again. It will also revoke consent for all banks and delete all transaction data. This can not be undone."
|
5
6
|
}
|
@@ -31,6 +31,7 @@ export declare class UserService extends RestService<UserBase, User, Collection<
|
|
31
31
|
*/
|
32
32
|
search(email: string): Observable<User>;
|
33
33
|
finishOnboarding(user: User): Observable<User>;
|
34
|
+
deactivate(user: User): Observable<User>;
|
34
35
|
updatePhoto(photo: FormData): Observable<void>;
|
35
36
|
createBasiq(): Observable<string>;
|
36
37
|
skipSetupItem(item: AccountSetupItem): Observable<User>;
|